base64中文不兼容解决方案

编码

1
2
3
window.btoa(encodeURIComponent(str))
// or
window.btoa(unescape(encodeURIComponent( str )))

解码

1
2
3
decodeURIComponent(window.atob(str))
// or
decodeURIComponent(escape(window.atob( str )))