From b5db3152e42a998f106edd6085eb2be0d5f56c38 Mon Sep 17 00:00:00 2001 From: hasansezertasan Date: Mon, 20 May 2024 22:51:48 +0300 Subject: [PATCH 1/4] copies original file as is, with no translation --- .../advanced/response-change-status-code.md | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 docs/tr/docs/advanced/response-change-status-code.md diff --git a/docs/tr/docs/advanced/response-change-status-code.md b/docs/tr/docs/advanced/response-change-status-code.md new file mode 100644 index 000000000..b88d74a8a --- /dev/null +++ b/docs/tr/docs/advanced/response-change-status-code.md @@ -0,0 +1,33 @@ +# Response - Change Status Code + +You probably read before that you can set a default [Response Status Code](../tutorial/response-status-code.md){.internal-link target=_blank}. + +But in some cases you need to return a different status code than the default. + +## Use case + +For example, imagine that you want to return an HTTP status code of "OK" `200` by default. + +But if the data didn't exist, you want to create it, and return an HTTP status code of "CREATED" `201`. + +But you still want to be able to filter and convert the data you return with a `response_model`. + +For those cases, you can use a `Response` parameter. + +## Use a `Response` parameter + +You can declare a parameter of type `Response` in your *path operation function* (as you can do for cookies and headers). + +And then you can set the `status_code` in that *temporal* response object. + +```Python hl_lines="1 9 12" +{!../../../docs_src/response_change_status_code/tutorial001.py!} +``` + +And then you can return any object you need, as you normally would (a `dict`, a database model, etc). + +And if you declared a `response_model`, it will still be used to filter and convert the object you returned. + +**FastAPI** will use that *temporal* response to extract the status code (also cookies and headers), and will put them in the final response that contains the value you returned, filtered by any `response_model`. + +You can also declare the `Response` parameter in dependencies, and set the status code in them. But keep in mind that the last one to be set will win. From f64c84ed60e2870e156cc3017455bef4fff6a142 Mon Sep 17 00:00:00 2001 From: hasansezertasan Date: Mon, 20 May 2024 23:44:40 +0300 Subject: [PATCH 2/4] Translation completed, ready tp PR. --- .../advanced/response-change-status-code.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/tr/docs/advanced/response-change-status-code.md b/docs/tr/docs/advanced/response-change-status-code.md index b88d74a8a..0ee5788f8 100644 --- a/docs/tr/docs/advanced/response-change-status-code.md +++ b/docs/tr/docs/advanced/response-change-status-code.md @@ -1,33 +1,33 @@ -# Response - Change Status Code +# Yanıt - Durum Kodunu Değiştirme -You probably read before that you can set a default [Response Status Code](../tutorial/response-status-code.md){.internal-link target=_blank}. +Muhtemelen daha önce varsayılan bir [Yanıt Durum Kodu](../tutorial/response-status-code.md){.internal-link target=_blank} belirleyebileceğinizi okumuşsunuzdur. -But in some cases you need to return a different status code than the default. +Ancak bazı durumlarda varsayılan durum kodundan farklı bir durum kodu döndürmeniz gerekebilir. -## Use case +## Kullanım Senaryosu -For example, imagine that you want to return an HTTP status code of "OK" `200` by default. +Diyelim ki, varsayılan olarak her şeyin yolunda olduğunu belirten `200` HTTP durum kodunu döndürmek istiyorsunuz. -But if the data didn't exist, you want to create it, and return an HTTP status code of "CREATED" `201`. +Ancak veri mevcut değilse, oluşturmak ve "Oluşturuldu" anlamına gelen `201` HTTP durum kodunu döndürmek istiyorsunuz. -But you still want to be able to filter and convert the data you return with a `response_model`. +Ancak yine de döndürdüğünüz verileri bir `response_model` ile filtrelemek ve dönüştürmek istiyorsunuz. -For those cases, you can use a `Response` parameter. +Bu durumlar için bir `Response` parametresi kullanabilirsiniz. -## Use a `Response` parameter +## Bir `Response` parametresi kullanın -You can declare a parameter of type `Response` in your *path operation function* (as you can do for cookies and headers). +*yol operasyonu fonksiyonunuzda* `Response` türünde bir parametre belirleyebilirsiniz (çerezler ve headers için yapabileceğiniz gibi). -And then you can set the `status_code` in that *temporal* response object. +Ardından *geçici* yanıt nesnesinde `status_code` belirtebilirsiniz. ```Python hl_lines="1 9 12" {!../../../docs_src/response_change_status_code/tutorial001.py!} ``` -And then you can return any object you need, as you normally would (a `dict`, a database model, etc). +Sonunda normalde döndürdüğünüz gibi herhangi bir nesneyi döndürebilirsiniz (bir `dict`, bir veritabanı modeli, vb). -And if you declared a `response_model`, it will still be used to filter and convert the object you returned. +Eğer bir `response_model` belirlediyseniz, döndürdüğünüz nesneyi filtrelemek ve dönüştürmek için kullanılacaktır. -**FastAPI** will use that *temporal* response to extract the status code (also cookies and headers), and will put them in the final response that contains the value you returned, filtered by any `response_model`. +**FastAPI** bu *geçici* yanıtı durum kodunu (ayrıca çerezleri ve headers'ı) çıkarmak için kullanacak ve döndürdüğünüz değeri herhangi bir `response_model` tarafından filtreleyerek son yanıta koyacaktır. -You can also declare the `Response` parameter in dependencies, and set the status code in them. But keep in mind that the last one to be set will win. +Bağımlılıklarda da `Response` parametresini belirtebilir ve durum kodunu onlarda belirleyebilirsiniz. Ancak son belirlenen durum kodu kullanılacaktır. From d990f6c4bc42afe882f8e4fabb85fbd6ecd3aa64 Mon Sep 17 00:00:00 2001 From: hasansezertasan Date: Tue, 21 May 2024 00:17:34 +0300 Subject: [PATCH 3/4] Fix typo. --- docs/tr/docs/advanced/response-change-status-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tr/docs/advanced/response-change-status-code.md b/docs/tr/docs/advanced/response-change-status-code.md index 0ee5788f8..213d5e239 100644 --- a/docs/tr/docs/advanced/response-change-status-code.md +++ b/docs/tr/docs/advanced/response-change-status-code.md @@ -14,7 +14,7 @@ Ancak yine de döndürdüğünüz verileri bir `response_model` ile filtrelemek Bu durumlar için bir `Response` parametresi kullanabilirsiniz. -## Bir `Response` parametresi kullanın +## Bir `Response` Parametresi Kullanın *yol operasyonu fonksiyonunuzda* `Response` türünde bir parametre belirleyebilirsiniz (çerezler ve headers için yapabileceğiniz gibi). From f46de3c18f404e10d0af53ce8c785646c61990d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasan=20Sezer=20Ta=C5=9Fan?= <13135006+hasansezertasan@users.noreply.github.com> Date: Tue, 21 May 2024 00:25:38 +0300 Subject: [PATCH 4/4] Update docs/tr/docs/advanced/response-change-status-code.md --- docs/tr/docs/advanced/response-change-status-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tr/docs/advanced/response-change-status-code.md b/docs/tr/docs/advanced/response-change-status-code.md index 213d5e239..457d32f0e 100644 --- a/docs/tr/docs/advanced/response-change-status-code.md +++ b/docs/tr/docs/advanced/response-change-status-code.md @@ -30,4 +30,4 @@ Eğer bir `response_model` belirlediyseniz, döndürdüğünüz nesneyi filtrele **FastAPI** bu *geçici* yanıtı durum kodunu (ayrıca çerezleri ve headers'ı) çıkarmak için kullanacak ve döndürdüğünüz değeri herhangi bir `response_model` tarafından filtreleyerek son yanıta koyacaktır. -Bağımlılıklarda da `Response` parametresini belirtebilir ve durum kodunu onlarda belirleyebilirsiniz. Ancak son belirlenen durum kodu kullanılacaktır. +Bağımlılıklarda da `Response` parametresini belirtebilir ve durum kodunu belirleyebilirsiniz. Ancak son belirlenen durum kodu kullanılacaktır.