miniprogram-compat icon indicating copy to clipboard operation
miniprogram-compat copied to clipboard

微信小程序 js 执行环境的兼容信息

Results 3 miniprogram-compat issues
Sort by recently updated
recently updated
newest added
trafficstars

在线支持度列表还在维护么?会更新到新基础库版本3.1.5么?

按照本仓库中的数据,从基础库 2.11 开始就可以使用 Generator 函数。 ![image](https://user-images.githubusercontent.com/7237365/136549307-b41d79a6-d5bc-4cca-91f7-bd3e276d3f1c.png) 在我们的项目中,我们使用 `@babel/preset-env` 和 `@babel/plugin-transform-runtime` 进行编译,将 target 设置为 `iOS >= 10`,同时关闭了开发者工具自带的 `ES6 转 ES5` 和 `增强编译`,理论上是可以使用 Generator 的。 但我们在 iOS 10 真机验证过程中发现,Generator 会产生以下异常: ![image](https://user-images.githubusercontent.com/7237365/136549428-6ba3d257-84a9-456e-801f-957587360184.png) 在开放社区中也有类似的反馈:...

报错和版本信息: ```js Uncaught TypeError: [].at is not a function at :1:4(env: macOS,mp,1.06.2503300; lib: 3.8.5) ``` 看了下支持列表, 在 2.23.1 就支持了, 但在开发者工具中会报错. (真机上正常)