1、[eslint-vue] ‘uni‘ is not defined.
在根目录添加.eslintrc.js文件
内容如下
module.exports = {
globals: {
uni: true,
wx: true
},
}
重启hbuilderX
2、TypeError: Invalid attempt to destructure non-iterable instance. In order to be iterable, non-array objects must have a Symbol.iterator method.
错误的意思是解构一个不可迭代的实例
比如接口返回的res是:{data:‘12121’},使用const{item}= res
4642

被折叠的 条评论
为什么被折叠?



