尝试window.atob(x);
其中x
为"A"
,"AA"
,"AAA"
等等。
为什么浏览器说:
VM156:1未捕获DOMException:无法在'Window'上执行'atob': 要解码的字符串未正确编码。
当字符串长度为1,5,9,13,17 ......
时
["A","AA","AAA","AAAA","AAAAA","AAAAAA","AAAAAAA"].forEach(function(str) {
console.log(str.length,str);
try {
console.log(atob(str));
}
catch(e) {
console.log(e.message);
}
});