尝试访问产品 SKU 的“选项”array_object 时,Bigcommerce API 有点麻烦。

我可以访问 SKU 对象中的所有其他内容,但不能访问 Options - 在 print_r 上执行 $sku->options 不会显示任何返回的数据,而 var_dump 会显示 '(bool)false' 。这是我的代码:

$filter = array('sku' => '940801DB');
$skus = Bigcommerce::getSkus($filter);

foreach ( $skus as $sku ){
    echo '<pre>';
    print_r( $sku->options );
    echo '</pre>';
}

任何想法如何访问这个数组/对象?

更多信息:

如果我 print_r($sku) 我得到:
Array
(
    [0] => Bigcommerce\Api\Resources\Sku Object
    (
        [ignoreOnCreate:protected] => Array
            (
                [0] => product_id
            )

        [ignoreOnUpdate:protected] => Array
            (
                [0] => id
                [1] => product_id
            )

        [fields:protected] => stdClass Object
            (
                [id] => 1
                [product_id] => 225
                [sku] => 940801DB
                [cost_price] => 0.0000
                [upc] =>
                [inventory_level] => 0
                [inventory_warning_level] => 0
                [bin_picking_number] =>
                [options] => Array
                    (
                        [0] => stdClass Object
                            (
                                [product_option_id] => 1
                                [option_value_id] => 834
                            )

                        [1] => stdClass Object
                            (
                                [product_option_id] => 2
                                [option_value_id] => 829
                            )

                        [2] => stdClass Object
                            (
                                [product_option_id] => 3
                                [option_value_id] => 827
                            )

                    )

            )

        [id:protected] => 1
        [ignoreIfZero:protected] => Array
            (
            )

        [fieldMap:protected] => Array
            (
            )

    )
)

最佳答案

这似乎是 Bigcommerce API 的一个错误。我使用composer安装它,如果你看一下Bigcommerce API的源代码,在vendor/bigcommerce/api/src/Bigcommerce/Api/Resources/Sku.php中:

public function options()
{
    $options = Client::getCollection($this->fields->options->resource, 'SkuOption');

    foreach ($options as $option) {
        $option->product_id = $this->product_id;
    }

    return $options;
}

看到它获得了 $this->fields->options->resource,但是 options 数组中没有资源。在产品中是这样的:
"options": {
    "url": "https://store-et7xe3pz.mybigcommerce.com/api/v2/products/32/options.json",
    "resource": "/products/32/options"
  },

但在 sku 中是这样的:
"options": [
      {
        "product_option_id": 15,
        "option_value_id": 18
      },
      {
        "product_option_id": 16,
        "option_value_id": 26
      }
    ]

对我来说似乎是一个错误。

关于php - Bigcommerce 产品 SKU -> 选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31074139/

10-15 15:10