aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/percent-encoding
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/percent-encoding
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/glossary/percent-encoding')
-rw-r--r--files/zh-cn/glossary/percent-encoding/index.html76
1 files changed, 76 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/percent-encoding/index.html b/files/zh-cn/glossary/percent-encoding/index.html
new file mode 100644
index 0000000000..c874c580a3
--- /dev/null
+++ b/files/zh-cn/glossary/percent-encoding/index.html
@@ -0,0 +1,76 @@
+---
+title: Percent-encoding
+slug: Glossary/percent-encoding
+tags:
+ - WebMechanics
+ - 词汇表
+translation_of: Glossary/percent-encoding
+---
+<p><strong>百分比编码 </strong>是一种拥有8位字符编码的编码机制,这些编码在{{Glossary("URL")}}的上下文中具有特定的含义。它有时被称为URL编码。编码由英文字母替换组成:“%” 后跟替换字符的ASCII的十六进制表示。</p>
+
+<p>需要编码的特殊字符有: <code>':'</code><font><font>,</font></font><code>'/'</code><font><font>,</font></font><code>'?'</code><font><font>,</font></font><code>'#'</code><font><font>,</font></font><code>'['</code><font><font>,</font></font><code>']'</code><font><font>,</font></font><code>'@'</code><font><font>,</font></font><code>'!'</code><font><font>,</font></font><code>'$'</code><font><font>,</font></font><code>'&amp;'</code><font><font>,</font></font><code>"'"</code><font><font>,</font></font><code>'('</code><font><font>,</font></font><code>')'</code><font><font>,</font></font><code>'*'</code><font><font>,</font></font><code>'+'</code><font><font>,</font></font><code>','</code><font><font>,</font></font><code>';'</code><font><font>,</font></font><code>'='</code>,以及,<code>'%'</code> 本身. 其他的字符虽然可以进行编码但是不需要。</p>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td><code>':'</code></td>
+ <td><code>'/'</code></td>
+ <td><code>'?'</code></td>
+ <td><code>'#'</code></td>
+ <td><code>'['</code></td>
+ <td><code>']'</code></td>
+ <td><code>'@'</code></td>
+ <td><code>'!'</code></td>
+ <td><code>'$'</code></td>
+ <td><code>'&amp;'</code></td>
+ <td><code>"'"</code></td>
+ <td><code>'('</code></td>
+ <td><code>')'</code></td>
+ <td><code>'*'</code></td>
+ <td><code>'+'</code></td>
+ <td><code>','</code></td>
+ <td><code>';'</code></td>
+ <td><code>'='</code></td>
+ <td><code>'%'</code></td>
+ <td><code>' '</code></td>
+ </tr>
+ <tr>
+ <td><code>%3A</code></td>
+ <td><code>%2F</code></td>
+ <td><code>%3F</code></td>
+ <td><code>%23</code></td>
+ <td><code>%5B</code></td>
+ <td><code>%5D</code></td>
+ <td><code>%40</code></td>
+ <td><code>%21</code></td>
+ <td><code>%24</code></td>
+ <td><code>%26</code></td>
+ <td><code>%27</code></td>
+ <td><code>%28</code></td>
+ <td><code>%29</code></td>
+ <td><code>%2A</code></td>
+ <td><code>%2B</code></td>
+ <td><code>%2C</code></td>
+ <td><code>%3B</code></td>
+ <td><code>%3D</code></td>
+ <td><code>%25</code></td>
+ <td><code>%20</code> 或 <code>+</code></td>
+ </tr>
+ </tbody>
+</table>
+
+<p>根据上下文, 空白符 <code>' '</code> 将会转换为 <code>'+'</code> (必须在HTTP的POST方法中使定义 <code>application/x-www-form-urlencoded </code> 传输方式), 或者将会转换为 <code>'%20'</code> 的 URL。</p>
+
+<h2 id="学习更多">学习更多</h2>
+
+<h3 id="基本知识">基本知识</h3>
+
+<ul>
+ <li>维基百科中 <a href="https://en.wikipedia.org/wiki/Percent-encoding">percent-encoding</a> 的相关定义。</li>
+</ul>
+
+<h3 id="技术规范">技术规范</h3>
+
+<ul>
+ <li>{{RFC(3986)}}, 第2.1节,其中定义了这种编码方式。</li>
+</ul>