Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for johnson (0.17 sec)

  1. docs/ja/docs/advanced/nosql-databases.md

    これは`result.value`の`dict`からそのキーと値をそれぞれ取りキーワード引数として`UserInDB`に渡します。
    
    例えば`dict`が下記のようになっていた場合:
    
    ```Python
    {
        "username": "johndoe",
        "hashed_password": "some_hash",
    }
    ```
    
    `UserInDB`には次のように渡されます:
    
    ```Python
    UserInDB(username="johndoe", hashed_password="some_hash")
    ```
    
    ## **FastAPI** コードの実装
    
    ### `FastAPI` app の作成
    
    ```Python hl_lines="46"
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Thu Aug 18 15:54:22 GMT 2022
    - 7K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/nosql-databases.md

    ⚫️ 🔜 ✊ `dict` `result.value`, & ✊ 🔠 🚮 🔑 & 💲 & 🚶‍♀️ 👫 🔑-💲 `UserInDB` 🇨🇻 ❌.
    
    , 🚥 `dict` 🔌:
    
    ```Python
    {
        "username": "johndoe",
        "hashed_password": "some_hash",
    }
    ```
    
    ⚫️ 🔜 🚶‍♀️ `UserInDB` :
    
    ```Python
    UserInDB(username="johndoe", hashed_password="some_hash")
    ```
    
    ## ✍ 👆 **FastAPI** 📟
    
    ### ✍ `FastAPI` 📱
    
    ```Python hl_lines="46"
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 4.8K bytes
    - Viewed (0)
Back to top