aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/idempotent/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/glossary/idempotent/index.html')
-rw-r--r--files/zh-cn/glossary/idempotent/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/files/zh-cn/glossary/idempotent/index.html b/files/zh-cn/glossary/idempotent/index.html
index cc8b22c143..e0dde60f23 100644
--- a/files/zh-cn/glossary/idempotent/index.html
+++ b/files/zh-cn/glossary/idempotent/index.html
@@ -1,10 +1,11 @@
---
title: 幂等
-slug: Glossary/幂等
+slug: Glossary/Idempotent
tags:
- Glossary
- WebMechanics
translation_of: Glossary/Idempotent
+original_slug: Glossary/幂等
---
<p>一个HTTP方法是<strong>幂等</strong>的,指的是同样的请求被执行一次与连续执行多次的效果是一样的,服务器的状态也是一样的。换句话说就是,幂等方法不应该具有副作用(统计用途除外)。在正确实现的条件下, {{HTTPMethod("GET")}} , {{HTTPMethod("HEAD")}} , {{HTTPMethod("PUT")}} 和 {{HTTPMethod("DELETE")}}  等方法都是<strong>幂等</strong>的,而  {{HTTPMethod("POST")}}  方法不是。所有的 {{glossary("safe")}} 方法也都是幂等的。</p>