Shopware API,配置组类型也在类型图片上显示图像

时间:2019-02-07 13:46:01

标签: shopware

我正在使用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解决此问题?我想念什么?预先感谢。

请查看屏幕截图。enter image description here

0 个答案:

没有答案