1,一般情况下,当我们在magento调用getModel在load某条实体接着更新对应实体上的值是,都不会覆盖原来的实体value表上的值,而是保留原来的,并在value表上重新创建一条值记录,比如初始表如下:
当我们更新属性值时,如更新entity_id为19的值,表变化如下:
值表并没有更新值,而是重新新建一条记录 2,针对以上问题,我们在model的Resource类重写_updateAttribute()方法,代码如下:
protected function _updateAttribute($object, $attribute, $valueId, $value)
{
$table = $attribute->getBackend()->getTable();
if (!isset($this->_attributeValuesToSave[$table])) {
$this->_attributeValuesToSave[$table] = array();
}
$entityIdField = $attribute->getBackend()->getEntityIdField();
$data = array(
'entity_type_id' => $object->getEntityTypeId(),
$entityIdField => $object->getId(),
'attribute_id' => $attribute->getId(),
'value' => $this->_prepareValueForSave($value, $attribute)
);
if ($valueId)
{
$data['value_id'] = $valueId;
}
$this->_attributeValuesToSave[$table][] = $data;
return $this;
}
接着对entity_id=18的实体进行更新值,可以覆盖值,表变化如下:
总结:对于magento,数据更新值为什么不按正常的思路走这也是让我困惑的地方?就先记录着,以后有时间细细琢磨... (责任编辑:最模板) |