在我的项目中,我在管理面板的“产品评论”中添加了一个新字段 location
,按照许多博客中的说明执行以下步骤。
review_detail
中创建一个新字段作为 location
。 app/code/code/Mage/Adminhtml/Block/Review/Edit/Form.php
中添加如下代码 $fieldset->addField('location', 'text', array(
'name' => 'location',
'label' => Mage::helper('adminhtml')->__('Location'),
'required' => false
)
);
就在上面:
$fieldset->addField('nickname', 'text', array(
'label' => Mage::helper('review')->__('Nickname'),
'required' => true,
'name' => 'nickname'
));
app/code/core/Mage/Review/Model/Resource/Review.php
中添加如下代码$detail = array(
'title' => $object->getTitle(),
'detail' => $object->getDetail(),
'nickname' => $object->getNickname(),
'location' => $object->getLocation() /* added */
);
app/code/core/Mage/Review/Model/Resource/Review/Collection.php
protected function _initSelect()
{
parent::_initSelect();
$this->getSelect()
->join(array('detail' => $this->_reviewDetailTable),
'main_table.review_id = detail.review_id',
array('detail_id', 'title', 'detail', 'nickname', 'customer_id','location'));
return $this;
}
{$mytheme}/template/review/form.phtml
中添加了以下内容:<li>
<label for="location_field" class="required"><em>*</em><?php echo $this->__('Location') ?></label>
<div class="input-box">
<input type="text" name="nickname" id="location_field" class="input-text required-entry" value="<?php echo $this->htmlEscape($data->getLocation()) ?>" />
</div>
</li>
我的问题是,虽然我可以在管理面板中看到一个新字段,但每当我提交审核表单时,它都没有被提交/存储在数据库中。
我什至重新索引并清除了缓存。
我应该如何更改才能使其正常工作?
请帮忙......我在magento 1.8上。
PS:我知道核心文件不应该被改变。一旦我在这个问题上取得成功,我将把它覆盖到新模块。
最佳答案
我确实遵循了问题中解释的确切步骤。并发现它工作正常。
我面临的唯一问题是在 {$mytheme}/template/review/form.phtml
中
您已为位置字段定义了 name="nickname"
而不是 name="location"
纠正这一点,如果您仍然面临同样的问题,请检查模块类是否被覆盖。
关于php - 未提交审核表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20402062/