gpt4 book ai didi

magento - 以编程方式设置自定义客户属性值 Magento 2

转载 作者:行者123 更新时间:2023-12-02 16:14:45 25 4
gpt4 key购买 nike

我正在导入一些客户:

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();

$customerFactory = $objectManager->create('\Magento\Customer\Model\CustomerFactory');


$customer = $objectManager->create('Magento\Customer\Model\Customer')->setWebsiteId(1)->loadByEmail('customrr@custom.com');


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');

但这也不起作用。

自定义属性在 Magentos 2 后台显示正确,并且如果手动创建客户,值也会正确保存。

最佳答案

你尝试过吗:

$customer-> setData('Attr1','value');

并且不要忘记保存并记录信息:

try {
$customer->save();
} catch (\Exception $e) {
// log exception so you can debug the issue if there is one
}

关于magento - 以编程方式设置自定义客户属性值 Magento 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39739905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com