Duplicate keys detected: '55'. This may cause an update error.
<a-form-item label="供货商" :label-col="{ span: 6 }" :wrapper-col="{ span: 16 }">
<a-select
mode="combobox"
allowClear
:getPopupContainer="(triggerNode) => triggerNode.parentNode"
v-decorator="['riskCategoryId', { rules: [{ required: true, message: '请选择或输入供货商' }] }]"
style="width: 100%"
placeholder="请选择或输入供货商"
@change="handleChange"
>
<a-select-option
v-for="(item) in supplierList"
:value="item.SupplierText"
:key="item.id"
>
{{ item.SupplierText }} - {{ item.SupplierPersonel }} - {{ item.SupplierContact }}
</a-select-option>
</a-select>
</a-form-item>
在我的key值唯一的情况下,我发现value值重复的情况下同样报Duplicate keys detected: ‘55’. This may cause an update error.不知道我的结论是否正确。但当数组中的value值变成不重复的时候,确实就不报这个错误了。
希望遇到大神能给我解惑,先记录一下这个问题。
|