js中字符串转base64和base64转字符串
Posted zard23
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中字符串转base64和base64转字符串相关的知识,希望对你有一定的参考价值。
var str = ‘坂井泉水‘; //console.log(encodeURI(str)); //console.log(btoa(encodeURI(str))); //console.log(atob(btoa(encodeURI(str)))); //console.log(decodeURI(atob(btoa(encodeURI(str))))); //字符串转base64 function encode(str){ // 对字符串进行编码 var encode = encodeURI(str); // 对编码的字符串转化base64 var base64 = btoa(encode); return base64; } // base64转字符串 function decode(base64){ // 对base64转编码 var decode = atob(base64); // 编码转字符串 var str = decodeURI(decode); return str; } console.log(encode(str)); console.log(decode(encode(str)));
以上是关于js中字符串转base64和base64转字符串的主要内容,如果未能解决你的问题,请参考以下文章