From 587731d4e4639e58eabde084a3a1c3989cbf90da Mon Sep 17 00:00:00 2001 From: an-777 <131597737+an-777@users.noreply.github.com> Date: Sat, 13 Apr 2024 19:58:26 +0800 Subject: [PATCH] [zh-tw]: update HTTP Status `409` (#19478) --- files/zh-tw/web/http/status/409/index.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/files/zh-tw/web/http/status/409/index.md b/files/zh-tw/web/http/status/409/index.md index 04e25716a814c2..ad9fb4d3a34e4f 100644 --- a/files/zh-tw/web/http/status/409/index.md +++ b/files/zh-tw/web/http/status/409/index.md @@ -1,17 +1,19 @@ --- title: 409 Conflict slug: Web/HTTP/Status/409 +l10n: + sourceCommit: 0880a90f3811475d78bc4b2c344eb4146f25f66c --- {{HTTPSidebar}} -HTTP **`409 Conflict`** 表示請求與伺服器目前狀態衝突 +HTTP **`409 Conflict`** 回應狀態碼表示請求與目標資源的當前狀態存在衝突。 -衝突通常發生於 {{HTTPMethod("PUT")}} 請求。如上傳一個已經有舊版本存在於伺服器的檔案而導致版本控制衝突時,會回復一個 409 錯誤。 +衝突最有可能發生在對 {{HTTPMethod("PUT")}} 請求的回應中。例如在上傳比伺服器上現有檔案更舊的檔案時,可能會收到 409 回應,導致版本控制衝突。 ## 狀態 -```plain +```http 409 Conflict ``` @@ -19,6 +21,10 @@ HTTP **`409 Conflict`** 表示請求與伺服器目前狀態衝突 {{Specifications}} +## 瀏覽器相容性 + +{{Compat}} + ## 參見 - {{HTTPMethod("PUT")}}