miniprogram-compat
miniprogram-compat copied to clipboard
微信开发者工具中 Array.prototype.at 未定义
报错和版本信息:
Uncaught TypeError: [].at is not a function
at <anonymous>:1:4(env: macOS,mp,1.06.2503300; lib: 3.8.5)
看了下支持列表, 在 2.23.1 就支持了, 但在开发者工具中会报错. (真机上正常)
请提供一个复现代码片段 https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
前面描述可能不够详细, 报错出现在内嵌 web-view 页面中使用 [].at 时, 导致 web-view 页面无法正常渲染.
代码片段: https://developers.weixin.qq.com/s/IgCVQQmh8i09
代码片段中, http://localhost/app/test.html 文件内容如下:
<script>
[0,1].at(-1)
</script>