当前位置: 代码迷 >> 综合 >> Avoid using non-primitive value as key, use string/number value instead.
  详细解决方案

Avoid using non-primitive value as key, use string/number value instead.

热度:63   发布时间:2024-02-08 22:17:03.0

警告:
Avoid using non-primitive value as key, use string/number value instead.
避免使用非基元值作为键,而是使用字符串/数字值。
在这里插入图片描述
原因:

<tr v-for="goodsitem in goodsList" :key="goodsitem">
//v-for(item,index)中item是数组或对象,而key的值不能是对象

解决:

//循环时将index作为key的值
<tr v-for="(goodsitem,goodsindex) in goodsList" :key="goodsindex">
  相关解决方案