1. 請檢查在商品建立 JSON 文字中,每個選項是否沒有重複的 itemName 值。
2. 檢查 attributeTypeName 和 attributeValueName 值是否已輸入到 attribute 陣列中,以便它們不被重複。
重複選項值的報錯示例,即必填的購買屬性的值完全相同
"items":[
{
"itemName":"sssss"
....
attributes": [
{
"attributeTypeName": "A",
"attributeValueName": "123"
},
{
"attributeTypeName": "B",
"attributeValueName": "456"
}
],
},
{
"itemName":"xxxxx"
....
attributes": [
{
"attributeTypeName": "A",
"attributeValueName": "123"
},
{
"attributeTypeName": "B",
"attributeValueName": "456"
}
],
}
]