自定义属性显示但未保存在magento 2管理员客户创建表单中

时间:2017-01-24 11:30:45

标签: magento2 custom-attributes

我已在magento 2环境field is added

中创建了新的客户属性

字段被添加了该字段中的数据未保存。我在保存数据时出现错误时出现错误。没有好的教程我可以找到添加新的attribute.please帮助。

我已遵循此代码

https://magento.stackexchange.com/questions/128178/magento-2-add-custom-attribute-in-customer-registration-form

1 个答案:

答案 0 :(得分:0)

您将数据设置为属性本身不会自动进行数据保存。 如果它是客户界面的一部分 例如

$attribute = $customer->getCustomAttribute('client_dn');
if ($attribute)
{
    $customer->setValue("hi");
}

if you are saving using customer object
$customer->setData('client_dn', 'Hi');