- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 529 for tip (0.01 sec)
-
docs/id/docs/tutorial/first-steps.md
Operasi lainnya yang bisa digunakan: * `@app.post()` * `@app.put()` * `@app.delete()` Dan operasi unik lainnya: * `@app.options()` * `@app.head()` * `@app.patch()` * `@app.trace()` /// tip | Tips Jika anda bisa menggunakan operasi apa saja (metode HTTP). **FastAPI** tidak mengharuskan anda menggunakan operasi tertentu. Informasi di sini hanyalah sebagai panduan, bukan keharusan.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Dec 12 21:46:36 UTC 2024 - 12K bytes - Viewed (0) -
docs/ko/docs/tutorial/body.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
docs/en/docs/tutorial/handling-errors.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/index.md
関数のパラメータに`Depends`を使用するのは`Body`や`Query`などと同じですが、`Depends`の動作は少し異なります。 `Depends`は1つのパラメータしか与えられません。 このパラメータは関数のようなものである必要があります。 そして、その関数は、*path operation関数*が行うのと同じ方法でパラメータを取ります。 /// tip | 豆知識 次の章では、関数以外の「もの」が依存関係として使用できるものを見ていきます。 /// 新しいリクエストが到着するたびに、**FastAPI** が以下のような処理を行います: * 依存関係("dependable")関数を正しいパラメータで呼び出します。 * 関数の結果を取得します。 * *path operation関数*のパラメータにその結果を代入してください。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/de/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image02.png"> Sie erhalten außerdem automatische Vervollständigung für die zu sendende Payload: <img src="/img/tutorial/generate-clients/image03.png"> /// tip | Tipp Beachten Sie die automatische Vervollständigung für `name` und `price`, welche in der FastAPI-Anwendung im `Item`-Modell definiert wurden. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jun 17 11:53:56 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/fr/docs/python-types.md
Et comme type, mettez `List`. Les listes étant un type contenant des types internes, mettez ces derniers entre crochets (`[`, `]`) : {*../../docs_src/python_types/tutorial006.py hl[4] *} /// tip | Astuce Ces types internes entre crochets sont appelés des "paramètres de type". Ici, `str` est un paramètre de type passé à `List`. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 10K bytes - Viewed (0) -
docs/en/docs/fastapi-people.md
They have proven to be **FastAPI Experts** by helping many others. ✨ /// tip You could become an official FastAPI Expert too! Just [help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. 🤓 ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jan 28 20:34:56 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/es/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image02.png"> También obtendrás autocompletado para el payload a enviar: <img src="/img/tutorial/generate-clients/image03.png"> /// tip | Consejo Nota el autocompletado para `name` y `price`, que fue definido en la aplicación de FastAPI, en el modelo `Item`. /// Tendrás errores en línea para los datos que envíes:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jun 17 11:53:56 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/es/docs/tutorial/first-steps.md
También puedes usar las otras operaciones: * `@app.post()` * `@app.put()` * `@app.delete()` Y los más exóticos: * `@app.options()` * `@app.head()` * `@app.patch()` * `@app.trace()` /// tip Eres libre de usar cada operación (método HTTP) como quieras. **FastAPI** no fuerza ningún significado específico. La información aquí se presenta como una guía, no un requisito.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 12.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/query-params-str-validations.md
여러 `q` *쿼리 매개변수* 값들을 (`foo` 및 `bar`) 파이썬 `list`로 *경로 작동 함수* 내 *함수 매개변수* `q`로 전달 받습니다. 따라서 해당 URL에 대한 응답은 다음과 같습니다: ```JSON { "q": [ "foo", "bar" ] } ``` /// tip | 팁 위의 예와 같이 `list` 자료형으로 쿼리 매개변수를 선언하려면 `Query`를 명시적으로 사용해야 합니다. 그렇지 않으면 요청 본문으로 해석됩니다. /// 대화형 API 문서는 여러 값을 허용하도록 수정 됩니다: <img src="/img/tutorial/query-params-str-validations/image02.png">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0)