字段被添加了该字段中的数据未保存。我在保存数据时出现错误时出现错误。没有好的教程我可以找到添加新的attribute.please帮助。
我已遵循此代码
答案 0 :(得分:0)
您将数据设置为属性本身不会自动进行数据保存。 如果它是客户界面的一部分 例如
$attribute = $customer->getCustomAttribute('client_dn');
if ($attribute)
{
$customer->setValue("hi");
}
if you are saving using customer object
$customer->setData('client_dn', 'Hi');