Vue TypeError Cannot read properties of undefined (reading ‘xxxx‘) ,错误原因及解决方案
今天使用Vue+axios 查询数据库信息,并显示。用到了v-for便签。axios 也可以正常接收到数据。但是总是报同一个错误,无法读取未定义的标签。但是代码中明显有。TypeError: Cannot read properties of undefined (reading 'xxxx')错误截图:原因:上面的代码为:<td>{{b.book.publisher.name}}&l
·
今天使用Vue+axios 查询数据库信息,并显示。
用到了v-for便签。
axios 也可以正常接收到数据。
但是总是报同一个错误,无法读取未定义的标签。
但是代码中明显有。
TypeError: Cannot read properties of undefined (reading 'xxxx')
错误截图:
原因:
上面的代码为:
<td>{{b.book.publisher.name}}</td>
<td>{{b.book.publisher.loc}}</td>
因为数据库字段为publisher的有的值为NULL, 所以才会报错。
如果出现此类错误可以查找一下是否有对象的值为NULL。
更多推荐
已为社区贡献4条内容
所有评论(0)