请教各位大佬,在使用axios请求后端数据的时候数据拿到了,在进行赋值的时候控制台报错Uncaught (in promise) TypeError: Cannot set property 'type' of undefined,我的代码如下:
getList(){
getBanner({
pageNumber:this.formInline.currentPage,
pageSize:this.formInline.pageSize
}).then(res=>{
this.tableData=res.data;
this.total=res.totalNumber
})
},
请问这是怎么回事啊?
你这是
element-ui
报的错源码我看是
message
相关的你找找你哪里调用了这个消息提示,应该是出现了这样的情况