首页 文章

Magento SOAP API v2 - 将可配置产品添加到购物车

提问于
浏览
0

将可配置产品添加到购物车时遇到问题 . 以下数组我设置为该函数

$productList_final = 
Array
(
    [0] => Array
    (
        [product_id] => 3
        [sku] => Wallpaper
        [name] => Wallpaper
        [set] => 4
        [type] => configurable
        [category_ids] => Array
            (
                [0] => 3
            )

        [website_ids] => Array
            (
                [0] => 1
            )

        [qty] => 1.0000
        [options] => Array
            (
                [info_buyRequest] => Array
                    (
                        [uenc] => aHR0cDovL2xvY2FsaG9zdC9zeW5jaHJvbml6ZS1vcmRlci9pbmRleC5waHAvY2VsbC1waG9uZXMvd2FsbHBhcGVyLmh0bWw,
                        [product] => 2
                        [form_key] => rYNDd47kaYLWGl4a
                        [related_product] => 
                        [super_attribute] => Array
                            (
                                [0] => Array
                                    (
                                        [key] => 92
                                        [value] => 5
                                    )

                            )

                        [qty] => 1
                    )

                [attributes_info] => Array
                    (
                        [0] => Array
                            (
                                [label] => Color
                                [value] => Green
                            )

                    )

                [simple_name] => Wallpaper-Green
                [simple_sku] => Wallpaper-Green
                [product_calculations] => 1
                [shipment_type] => 0
            )

    )

)

但是当调用跟随函数时,它会产生错误,“SOAP-ERROR:编码:对象没有'key'属性”

$apiClient->shoppingCartProductAdd($sessionId, $cartId, $productList_final);

任何线索如何我应该准备上面的数组 - 选项(supper_attributes)?

1 回答

相关问题