uncaught DOMException: Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range.
时间: 2024-06-13 07:03:34 浏览: 171
Uncaught DOMException:
这个错误提示意味着在使用JavaScript中的atob()函数解码字符串时,该字符串包含了不在Latin1范围内的字符。这个函数只能解码Latin1字符集中的字符串,如果字符串中包含了其他字符,就会出现这个错误。解决这个问题的方法是使用decodeURIComponent()和escape()函数对字符串进行编码和解码,以确保字符串中的所有字符都在Latin1范围内。具体实现方法可以参考引用中提供的代码。
阅读全文