uncaught (in promise) TypeError JSON.stringify(...).replaceAll is not a function at eval
时间: 2024-01-20 12:13:02 浏览: 159
javax.activation.UnsupportedDataTypeException: no object DCH for MIME type
5星 · 资源好评率100%
这个错误通常是因为你正在尝试在不支持 `replaceAll` 方法的浏览器上使用它。`replaceAll` 是在ES2021中引入的新方法,因此只有最新的浏览器支持它。如果你想在旧浏览器上使用 `replaceAll` 方法,你可以使用正则表达式来替换所有匹配项,例如:
```
str.replace(/searchValue/g, replaceValue)
```
其中 `searchValue` 是要查找的值,`replaceValue` 是要替换的值。如果你需要进一步帮助,请提供更多的上下文和代码示例。
阅读全文