function utf8_to_b64(str) {
return window.btoa(unescape(encodeURIComponent(str)));
}
function b64_to_utf8(str) {
return decodeURIComponent(escape(window.atob(str)));
}
屏幕快照 2017-06-21 上午11.20.25.png
function utf8_to_b64(str) {
return window.btoa(unescape(encodeURIComponent(str)));
}
function b64_to_utf8(str) {
return decodeURIComponent(escape(window.atob(str)));
}
屏幕快照 2017-06-21 上午11.20.25.png
本文标题:解决btoa,atob中文乱码问题
本文链接:https://www.haomeiwen.com/subject/thbzqxtx.html
网友评论