Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 188 for Editors (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/ja/docs/features.md

    ドキュメントに戻る必要はほとんどありません。
    
    エディタがどのように役立つかの例です:
    
    * [Visual Studio Code](https://code.visualstudio.com/) の場合:
    
    ![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png)
    
    * [PyCharm](https://www.jetbrains.com/pycharm/) の場合:
    
    ![editor support](https://fastapi.tiangolo.com/img/pycharm-completion.png)
    
    以前は不可能だと思っていたコードでも補完が得られます。例えば、リクエストから届く(ネストされている可能性のある)JSON ボディ内の `price` キーなどです。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/debugging.md

    # Debugging { #debugging }
    
    You can connect the debugger in your editor, for example with Visual Studio Code or PyCharm.
    
    ## Call `uvicorn` { #call-uvicorn }
    
    In your FastAPI application, import and run `uvicorn` directly:
    
    {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *}
    
    ### About `__name__ == "__main__"` { #about-name-main }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    /// tip | İpucu
    
    Bazı editörler, kullanılmayan function parametrelerini kontrol eder ve bunları hata olarak gösterebilir.
    
    Bu `dependencies` yaklaşımıyla, editör/araç hatalarına takılmadan dependency'lerin çalıştırılmasını sağlayabilirsiniz.
    
    Ayrıca kodunuzda kullanılmayan bir parametreyi gören yeni geliştiricilerin bunun gereksiz olduğunu düşünmesi gibi bir kafa karışıklığını da azaltabilir.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/debugging.md

    # Debugging { #debugging }
    
    Sie können den Debugger in Ihrem Editor verbinden, zum Beispiel mit Visual Studio Code oder PyCharm.
    
    ## `uvicorn` aufrufen { #call-uvicorn }
    
    Importieren und führen Sie `uvicorn` direkt in Ihrer FastAPI-Anwendung aus:
    
    {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *}
    
    ### Über `__name__ == "__main__"` { #about-name-main }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial002_py310.py hl[7] *}
    
    Bu durumda, `item_id` bir `int` olarak tanımlanır.
    
    /// check | Ek bilgi
    
    Bu sayede, fonksiyon içinde hata denetimi, kod tamamlama vb. konularda editör desteğine kavuşursunuz.
    
    ///
    
    ## Veri <dfn title="diğer adlarıyla: serileştirme, ayrıştırma, marshalling">dönüştürme</dfn> { #data-conversion }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  6. docs/de/docs/index.md

    ```Python
            ... "item_name": item.name ...
    ```
    
    ... zu:
    
    ```Python
            ... "item_price": item.price ...
    ```
    
    ... und sehen Sie, wie Ihr Editor die Attribute automatisch vervollständigt und ihre Typen kennt:
    
    ![Editor Unterstützung](https://fastapi.tiangolo.com/img/vscode-completion.png)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 23.6K bytes
    - Click Count (1)
  7. docs/tr/docs/tutorial/extra-data-types.md

    * `int`
    * `float`
    * `str`
    * `bool`
    
    Ancak daha karmaşık veri tiplerini de kullanabilirsiniz.
    
    Ve yine, şimdiye kadar gördüğünüz özelliklerin aynısına sahip olursunuz:
    
    * Harika editör desteği.
    * Gelen request'lerden veri dönüştürme.
    * response verileri için veri dönüştürme.
    * Veri doğrulama.
    * Otomatik annotation ve dokümantasyon.
    
    ## Diğer veri tipleri { #other-data-types }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/extra-data-types.md

    * `int`
    * `float`
    * `str`
    * `bool`
    
    Mas você também pode usar tipos de dados mais complexos.
    
    E você ainda terá os mesmos recursos que viu até agora:
    
    * Ótimo suporte do editor.
    * Conversão de dados das requisições recebidas.
    * Conversão de dados para os dados da resposta.
    * Validação de dados.
    * Anotação e documentação automáticas.
    
    ## Outros tipos de dados { #other-data-types }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/debugging.md

    # Depuração { #debugging }
    
    Você pode conectar o depurador no seu editor, por exemplo, com o Visual Studio Code ou PyCharm.
    
    ## Chamar `uvicorn` { #call-uvicorn }
    
    Em sua aplicação FastAPI, importe e execute `uvicorn` diretamente:
    
    {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *}
    
    ### Sobre `__name__ == "__main__"` { #about-name-main }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial002_py310.py hl[7] *}
    
    Neste caso, `item_id` é declarado como um `int`.
    
    /// check | Verifique
    Isso fornecerá suporte do editor dentro da sua função, com verificações de erros, preenchimento automático, etc.
    ///
    
    ## Dados <dfn title="também conhecido como: serialização, parsing, marshalling">conversão</dfn> { #data-conversion }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 9.5K bytes
    - Click Count (0)
Back to Top