3
製品全体をMagento2に保存するのではなく、特定の属性値のみを保存する方法
すでにご存じのとおり、このような特定の属性値を保存するために、magentoで以下のメソッドを使用していたことをすでに知っています。 // saving product attribute $product = Mage::getModel('catalog/product')->load('id here'); $product->setName('your name here'); $product->getResource()->saveAttribute($product, 'name'); または // saving customer attribute $customer->setData($attrCode, $value)->getResource()->saveAttribute($customer, $attrCode); 缶誰も私に知らせてMagento2上記の選択肢を。