美文网首页
解决btoa,atob中文乱码问题

解决btoa,atob中文乱码问题

作者: 阿莱_1b6f | 来源:发表于2017-06-21 11:23 被阅读0次
    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