Magento 1.9.2 - 保存自定义管理表单产品新建和编辑页面(自定义选项卡)
Magento 1.9.2 - Save custom admin form product new & edit page (custom tab)
我实现了将自定义选项卡/网格添加到产品新建和编辑页面,其中包含一个输入字段。按照这个 tutorial
问题是它没有保存数据输入。在这一点上,我不知道这是否实际上没有包含在教程中,或者我犯了一个错误。
这足以保存数据输入吗?
$customFieldValue = $this->_getRequest()->getPost('custom_field');
$product->save();
如何在后端调试这个值?
教程不涉及。要查看差异,您可能必须添加 new attribute to product 然后执行类似的操作:
$customFieldValue = $this->_getRequest()->getPost('custom_field');
$product->setNewAttribute($customFieldValue);
$product->save();
我实现了将自定义选项卡/网格添加到产品新建和编辑页面,其中包含一个输入字段。按照这个 tutorial
问题是它没有保存数据输入。在这一点上,我不知道这是否实际上没有包含在教程中,或者我犯了一个错误。
这足以保存数据输入吗?
$customFieldValue = $this->_getRequest()->getPost('custom_field');
$product->save();
如何在后端调试这个值?
教程不涉及。要查看差异,您可能必须添加 new attribute to product 然后执行类似的操作:
$customFieldValue = $this->_getRequest()->getPost('custom_field');
$product->setNewAttribute($customFieldValue);
$product->save();