字符串的加密和解密
Posted 小生不才
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串的加密和解密相关的知识,希望对你有一定的参考价值。
仅支持浏览器端:
// 字符串编码
function encode (str) {
return window.btoa(encodeURIComponent(str))
}
// 字符串解码
function decode(str) {
return decodeURIComponent(atob(str))
}
console.log(encode(\'yangyingjie\'))
以上是关于字符串的加密和解密的主要内容,如果未能解决你的问题,请参考以下文章