-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13-7.html
78 lines (75 loc) · 3 KB
/
13-7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./public/favicon.ico" />
<meta http-equiv="cache-control" content="no-cache" />
<title></title>
<link rel="stylesheet" href=" https://necolas.github.io/normalize.css/8.0.1/normalize.css" />
<link rel="stylesheet" href="./hightlight/default.min.css" />
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/copybutton.css" />
<link rel="stylesheet" href="./css/hightlight.css" />
<script src="./hightlight/hightlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.11/clipboard.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BEVZJDBC7Z"></script>
<script src="./js/gtag.js"></script>
</head>
<body>
<header>
<nav>
<h1>
<span id="toggle-menu"></span>
<a href="index.html"></a>
</h1>
</nav>
</header>
<main>
<aside>
<nav></nav>
</aside>
<article>
<h2 id="13-7">13-7 Well-formed JSON.stringify</h2>
<p>
當後端回傳一個 JSON 時需要將 JSON 編碼成 UTF-8 格式。但是當使用 JSON.stringify
來序列化的時候,不能將一些非成對的 UTF-16 的代碼單元(0xD800-0xDFFF) 編碼成 UTF-8
。可以了解到 UTF-16 代理對是由一個高代理(U+D800-U+DBFF 1,024 個代碼點)+
一個低代理(U+DC00—U+DFFF 1,024 個代碼點) 組成。只有一半的 UTF-16
沒辦法正確的編碼成一個對的字串。所以在 ES10 修改了一下 JSON.stringify
,讓它可以以一種合理的方式處理這種錯誤的字串
:在處理這部分字串的時候,用轉義字串代替,而不是編碼的方式。
</p>
<pre><code class="language-js">
// 正確成對的 UTF-16編碼組成的非 BMP 字串,能夠正確印出
JSON.stringify('𝌆')
// '"𝌆"'
JSON.stringify('\uD834\uDF06')
// '"𝌆"'
// 錯誤未配對的UTF-16代理代碼單元會被轉換成轉義字串
JSON.stringify('\uDF06\uD834')
// '"\udf06\ud834"'
// 單個UTF-16代理代碼單元也會被轉成轉義字串
JSON.stringify('\uDEAD')
// '"\udead"'
</code></pre>
<p>下面的範例展示了 JSON.stringify 是以轉義字串的方式處理這部分字串的</p>
<pre><code class="language-js">
console.log(JSON.stringify(`\u{D800}`) === `"\u{D800}"`);
// false
console.log(JSON.stringify(`\u{D800}`) === `"\ud800"`);
// true
</code></pre>
<p>資料來源:</p>
<p>
<a href="https://juejin.cn/post/7023895016384757796">
https://juejin.cn/post/7023895016384757796
</a>
</p>
</article>
</main>
</body>
<script type="module" src="./js/main.js"></script>
</html>