https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decodingjavascript
In JavaScript there are two functions respectively for decoding and encoding base64 strings:java
工做場景,客戶端HTML片斷的保存與再現。api
Since DOMString
s are 16-bit-encoded strings, in most browsers calling window.btoa
on a Unicode string will cause a Character Out Of Range
exception if a character exceeds the range of a 8-bit byte (0x00~0xFF). There are two possible methods to solve this problem:ide
encodeURIComponent
) and then encode it;DOMString
to an UTF-8 array of characters and then encode it.Here are the two possible methods.this
其它相關帖子:code
https://blog.coding.net/blog/resolve-atob-decode-chinese-character-outputting-messy-code-problem-in-javascriptcomponent
http://levy.work/2017-03-24-black-magic-js-atob-with-utf8/orm