美文网首页
JS中 atob 方法解码中文字符乱码问题

JS中 atob 方法解码中文字符乱码问题

作者: yujiawei007 | 来源:发表于2023-11-22 11:19 被阅读0次

    // 中文 base64 编码

    function utf8_to_b64(str) {
        return window.btoa(unescape(encodeURIComponent(str)));
    }
    

    // 中文 base64 解码

    function b64_to_utf8(str) {
        return decodeURIComponent(escape(window.atob(str)));
    }
    

    相关文章

      网友评论

          本文标题:JS中 atob 方法解码中文字符乱码问题

          本文链接:https://www.haomeiwen.com/subject/eyniwdtx.html