已解决:TypeError: Cannot read properties of undefined (reading ‘name‘ )
Posted 小企鹅推雪球!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了已解决:TypeError: Cannot read properties of undefined (reading ‘name‘ )相关的知识,希望对你有一定的参考价值。
文章目录
错误描述
TypeError: Cannot read properties of undefined (reading ‘name‘ )
- 这个错误在前端中蛮常见的,一般都是提示的这个属性没写对,但是呢,如果仅仅是这么一个简单的错误,也没必要特意写个博客记录一下
- 这个错误呢,最常见的解决方式就是查看他提示这个“name”,看看哪个地方写错了
解决方案
-
我是在对接口返回值做处理的时候遇到的,简单的来说,就是我需要对接口返回的某个值做处理,如下所示:
viewResults(row.id).then(response => console.log(response) for (var i = 1; i < response.data.list.length; i++) if (response.data.list[i - 1].score[3] == response.data.list[i - 1].score[4]) this.gridData[i].name = response.data.list[i - 1].name this.gridData[i].catename = response.data.list[i - 1].catename this.gridData[i].score = response.data.list[i - 1].score.substring(0, 6) else this.gridData[i].name = response.data.list[i - 1].name this.gridData[i].catename = response.data.list[i - 1].catename this.gridData[i].score = response.data.list[i - 1].score.substring(0, 5) )
-
具体id错误原因是这样的,vue给对象数组添加对象时for循环只执行一次(我在data中手中加了一个对象,所以只执行了一次),这个其实就是赋值产生的问题,所以上面这么写是错的,正确写法如下所示:
viewResults(row.id).then(response => for(var i = 1;i<response.data.list.length;i++) let obj =; if(response.data.list[i-1].score[3] == response.data.list[i-1].score[4]) obj.name = response.data.list[i-1].name obj.catename = response.data.list[i-1].catename obj.score = response.data.list[i-1].score.substring(0,6) else obj.name = response.data.list[i-1].name obj.catename = response.data.list[i-1].catename obj.score = response.data.list[i-1].score.substring(0,5) this.gridData.push(obj) )
PS:push() 方法可向数组的末尾添加一个或多个元素,并返回新的长度。新元素将添加在数组的末尾。此方法改变数组的长度。
以上是关于已解决:TypeError: Cannot read properties of undefined (reading ‘name‘ )的主要内容,如果未能解决你的问题,请参考以下文章
已解决:TypeError: Cannot read properties of undefined (reading ‘name‘ )
已解决:TypeError: Cannot read properties of undefined (reading ‘name‘ )
TypeError: Cannot read property 'scrollIntoView' of null 如何解决?
Nodejs报内部错误 TypeError: Cannot read property ‘destroy‘ of undefined的解决方法
如何解决 TypeError: Cannot read property 'push' of undefined in simple node project?
解决TypeError: Cannot read properties of null (reading ‘xxx‘)的错误