控制台报错 TypeError: Cannot read properties of undefined (reading 'map')
我的错误原因:第一次页面渲染的时候,map的对象是undefined或null,文章来源:https://www.toymoban.com/news/detail-725153.html
解决方法:在前面加个要进行判断,当有值时再去遍历文章来源地址https://www.toymoban.com/news/detail-725153.html
// 1、可选链式操作符 ?.
this.array?.map(()=>{ …… })
// 2、&& 判断
this.array&&this.array.map(()=>{ …… })
到了这里,关于TypeError: Cannot read properties of undefined (reading ‘map‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!