这是我的代码
$fields = array("sku" => "TestM-F", "options" => ["product_option_id" => 330,"option_value_id" => 255 ]);
$isCreated = $this->store->createSku($fields);
$error = $this->store->getLastError();
print_r($error);
print_r($isCreated);
我收到这样的错误
[status] => 404
[message] => The requested resource was not found.
product_option_id& option_value_id已经存在于表中。 TestM sku已经存在,但我想用TestM-F这个新名称创建另一个sku,并使用相同的product_option_id& option_value_id。 (重复)。
答案 0 :(得分:0)
尝试使用
return Client::createResource('/products/' . $this->product_id . '/skus', $this->getCreateFields());