aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn')
-rw-r--r--files/zh-cn/glossary/idempotent/index.html4
-rw-r--r--files/zh-cn/web/api/url/url/index.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/files/zh-cn/glossary/idempotent/index.html b/files/zh-cn/glossary/idempotent/index.html
index e0dde60f23..ba2604eb38 100644
--- a/files/zh-cn/glossary/idempotent/index.html
+++ b/files/zh-cn/glossary/idempotent/index.html
@@ -21,14 +21,14 @@ GET /pageX HTTP/1.1
GET /pageX HTTP/1.1
</pre>
-<p><code>POST /add_row HTTP/1.1</code> 是幂等的。如果调用多次,就会增加多行记录:</p>
+<p><code>POST /add_row HTTP/1.1</code> 不是幂等的。如果调用多次,就会增加多行记录:</p>
<pre class="notranslate">POST /add_row HTTP/1.1
POST /add_row HTTP/1.1 -&gt; Adds a 2nd row
POST /add_row HTTP/1.1 -&gt; Adds a 3rd row
</pre>
-<p><code>DELETE /idX/delete HTTP/1.1</code> 幂等的,即便是不同请求之间接收到的状态码不一样:</p>
+<p><code>DELETE /idX/delete HTTP/1.1</code> 是幂等的,即便是不同请求之间接收到的状态码不一样:</p>
<pre class="notranslate">DELETE /idX/delete HTTP/1.1 -&gt; Returns 200 if idX exists
DELETE /idX/delete HTTP/1.1 -&gt; Returns 404 as it just got deleted
diff --git a/files/zh-cn/web/api/url/url/index.html b/files/zh-cn/web/api/url/url/index.html
index 33cf3c7abf..3274537bf9 100644
--- a/files/zh-cn/web/api/url/url/index.html
+++ b/files/zh-cn/web/api/url/url/index.html
@@ -26,7 +26,7 @@ translation_of: Web/API/URL/URL
<dl class="syntaxbox">
<dt><code><var>url</var></code></dt>
- <dd>是一个表示绝对或相对 URL 的 {{domxref("DOMString")}}。如果<code><var>url</var></code> 是相对 URL,则会将 <code><var>base</var></code> 用作基准 URL。如果 <code><var>url</var></code> 是绝对URL,则无论参数<code><var>url</var></code>是否存在,都将被忽略。</dd>
+ <dd>是一个表示绝对或相对 URL 的 {{domxref("DOMString")}}。如果<code><var>url</var></code> 是相对 URL,则会将 <code><var>base</var></code> 用作基准 URL。如果 <code><var>url</var></code> 是绝对URL,则无论参数<code><var>base</var></code>是否存在,都将被忽略。</dd>
<dt><code><var>base</var></code> {{optional_inline}}</dt>
<dd>是一个表示基准 URL 的 {{domxref("DOMString")}},在 <em>url</em> 是相对 URL 时,它才会起效。如果未指定,则默认为 <code>''</code>。</dd>
</dl>