我正在使用Shopware API。我已经编写了使用api将csv的值更新为shopware的代码。我的示例内容如下所示。
$configurationSet = [
'name' => "Test set",
'type' => 2,
'groups' => [
[
'name' => 'Farbe',
'options' => [
"name" => "Red"
]
],
[
'name' => 'Größe',
'options' => [
'name' => 'XXL',
]
]
]
];
$variant['configuratorOptions'] = [
['group' => 'Farbe', 'option' => 'Red'],
['group' => 'Größe', 'option' => 'XXL']
];
当我更新数据时,将保存值。但是大小会显示图像。如何通过api解决此问题?我想念什么?预先感谢。