我创建了一个安装脚本,使用下面的脚本向客户添加两个字段。
但是我收到了这个错误。
Source model "" not found for attribute "dob_month"
我没有在第一行定义模型吗?这究竟是做什么的?解决这个问题的最佳方法是什么?
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
$setup->addAttribute('customer', 'dob_month', array(
'label' => 'Month',
'type' => 'varchar',
'input' => 'dropdown',
'visible' => true,
'required' => true,
'position' => 1,
'option' => array (
'value' => array (
'optionone' => array('January'),
'optiontwo' => array('February'),
'optionthree' => array('March'),
'optionfour' => array('April'),
'optionfive' => array('May'),
'optionsix' => array('June'),
'optionseven' => array('July'),
'optioneight' => array('August'),
'optionnine' => array('September'),
'optionten' => array('October'),
'optioneleven' => array('November'),
'optiontwelve' => array('December')
)
)
));
$setup->addAttribute('customer', 'dob_year', array (
'label' => 'Year',
'type' => 'varchar',
'input' => 'text',
'visible' => true,
'required' => true,
'position' => 1
));
答案 0 :(得分:5)
如果您已添加该属性,则需要使用updateAttribute
在eav_attribute
表格中设置源模型值。
<?php
$installer = Mage::getResourceModel('customer/setup','default_setup');
/***
* When working with EAV entities it's important to use their module's setup class.
* See Mage_Customer_Model_Resource_Setup::_prepareValues() to understand why.
*/
$installer->startSetup();
$installer->updateAttribute(
'customer',
'dob_month',
'source_model', //a.o.t. 'source'
'whatever/source_model',
)
$installer->endSetup();
如果没有,那么您可以使用addAttribute()
- 由于Mage_Eav
安装类'_prepareValues()
方法 - 需要source_model列的别名,如Alexei的回答所示(' source'而不是'source_model')。
答案 1 :(得分:3)
当Magento需要知道属性的可能值时,使用源模型。例如,在呈现属性的下拉列表时。所以不,你没有定义它。如果我的记忆没有让我失望,你可以通过将'source'添加到属性定义数组来实现。类似的东西:
...
'source' => 'eav/entity_attribute_source_table'
...
这意味着所有可能的选项都存储在表eav_attribute_option和eav_attribute_option中。因此,如果安装脚本中的选项已成功添加到这些表中,那么这应该可行。或者您可以编写自己的源模型,我更喜欢它。