diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:56:40 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:56:40 +0100 |
commit | 310fd066e91f454b990372ffa30e803cc8120975 (patch) | |
tree | d5d900deb656a5da18e0b60d00f0db73f3a2e88e /files/zh-cn/glossary/serialize | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-310fd066e91f454b990372ffa30e803cc8120975.tar.gz translated-content-310fd066e91f454b990372ffa30e803cc8120975.tar.bz2 translated-content-310fd066e91f454b990372ffa30e803cc8120975.zip |
unslug zh-cn: move
Diffstat (limited to 'files/zh-cn/glossary/serialize')
-rw-r--r-- | files/zh-cn/glossary/serialize/index.html | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/files/zh-cn/glossary/serialize/index.html b/files/zh-cn/glossary/serialize/index.html deleted file mode 100644 index 8405434f3e..0000000000 --- a/files/zh-cn/glossary/serialize/index.html +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Serialize -slug: Glossary/Serialize -tags: - - Glossary - - JavaScript - - Serialize -translation_of: Glossary/Serialization -translation_of_original: Glossary/Serialize ---- -<p>序列化(Serialization )意味着将 {{Glossary("object", "对象")}} 或某种其他类型的数据结构转换为可存储格式(例如,文件或 {{Glossary("buffer")}})。</p> - -<p>在 {{Glossary("JavaScript")}} 中,你可以通过调用 {{jsxref("JSON.stringify()")}} {{Glossary("function", "函数")}}将某个值序列化为 {{Glossary("JSON")}} 格式的 {{Glossary("string", "字符串")}}。</p> - -<p>{{Glossary("CSS")}} 值可以通过调用 {{domxref("CSSStyleDeclaration.getPropertyValue()")}} 函数来序列化。</p> - -<h2 id="了解更多">了解更多</h2> - -<h3 id="General_knowledge">General knowledge</h3> - -<ul> - <li><a href="https://en.wikipedia.org/wiki/Serialization">Serialization</a> on Wikipedia</li> -</ul> |