7
我進口的一些客戶:設置自定義客戶屬性值編程的Magento 2
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$customerFactory = $objectManager->create('\Magento\Customer\Model\CustomerFactory');
$customer = $objectManager->create('Magento\Customer\Model\Customer')->setWebsiteId(1)->loadByEmail('[email protected]');
try {
if(!empty($customer->getData('email')))
{
$customer->setAttr1(1); // Attr1 = Name of the custom Attribute
$customer->setAttr2(2); // Attr2 = Name of the custom Attribute
}
else
{
$customer = $customerFactory->create()->setWebsiteId(1);
}
$customer->setLastname("Lastname");
$customer->setFirstname("Firsty");
.....
$customer->save();
客戶保存他的所有標準的正確屬性,但我的新的屬性將不會被保存反正。我也試過:
$customer->setCustomAttribute('Attr1','value');
但是這並沒有起作用。
自定義Attribute在Magentos 2後臺中顯示爲correclty,如果手動創建客戶,也會正確保存值。
分享您用於創建客戶屬性的代碼。 –