仅反对浏览器端:
// 字符串编码
function encode (str) {return window.btoa(encodeURIComponent(str))
}
// 字符串解码
function decode(str) {return decodeURIComponent(atob(str))
}
console.log(encode('yangyingjie'))
仅反对浏览器端:
// 字符串编码
function encode (str) {return window.btoa(encodeURIComponent(str))
}
// 字符串解码
function decode(str) {return decodeURIComponent(atob(str))
}
console.log(encode('yangyingjie'))