uniapp 开发备忘录-防坑指南
uniapp 开发备忘录-防坑指南
- npm run dev:mp-weixin 编译微信小程序报错:
[plugin:uni:mp-using-component] Expected ‘,’ or ‘}’ after property value in JSON at position
解决方案:升级uniapp 到最新 alpha 版。(2024年7月13日)
npx @dcloudio/uvm@latest alpha
- RangeError: Maximum call stack size exceeded
const loadData = async () => {await api.get_data_1()api.get_data_2() // ==== 第二个没加 await ==== tell me why!!!
}