我正在创建一个添加横幅的模块。现在,当我想要编辑横幅时,我遇到了问题。
问题在于,当我点击“保存”时,Magento会创建一个新横幅并且不会修改原始横幅。当我修改某些内容并且如果我不修改任何内容并单击“保存”时,就会发生这种情况。
我有另一个问题。我有一个图片领域,它工作得很好,但是当我点击“编辑”时,它会显示预览图像和删除复选框,但字段为空,如果我保存横幅,则会将图像字段留空。
我希望你能帮助我。在此先感谢,如果您需要更多信息,请向我索取。
答案 0 :(得分:1)
关于保存横幅广告,根据您的具体情况调整以下代码: 这里重要的是在保存时使用注册表。 还要检查保存时$ data中是否提供了横幅ID。您的form.php必须提供它,在$ form-> setValues(...)行之前添加以下代码:
$model = Mage::registry('BannerManagement_data');
if ($model->getEntityId()) {
$fieldset->addField('entity_id', 'hidden', array('name' => 'entity_id'));// or banner_id depends on what id title you gave in your database table
}
当然,您必须在保存之前验证用户的输入。在横幅模型中使用受保护的方法_beforeSave()来实现这些输入验证,或者直接在保存操作中使用控制器。
/**
* Common init to almost all actions
*/
protected function _initAction(){
$this->_title ($this->__("Banner"));
$this->loadLayout();
$this->_setActiveMenu('mymenu/banner');
$this->_addBreadcrumb(Mage::helper('banner')->__('Banners'), Mage::helper('banner')->__('Items'));
}
if(! Mage::registry('current_banner')){
Mage::register('current_banner', Mage::getModel('banner/item'));
}
$id = $this->getRequest()->getParam('id');
if (!is_null($id)) {
$model = Mage::registry('current_banner')->load($id);
if (! $model->getId()) {
$this->_getSession()->addError(Mage::helper('banner')->__('This banner item no longer exists'));
$this->_redirect('*/*/');
return;
}
}
return $this;
}
/**
* Banner edit page
*/
public function editAction(){
$this->_initAction();
$this->_title('Banner Edit');
// 1. Get ID and create model
$banner = Mage::registry('current_banner');
// 2. set entered data if there had errors when we do save
$data = $this->_getSession()->getBannerData(true);
// 3. restore data from SESSION and provide a correct date format
if (!empty($data)) {
$banner->addData($data);
}
// 4. Build Edit form
$this->_addBreadcrumb(Mage::helper('banner')->__('Edit banner Item'), Mage::helper('banner')->__('Edit Banner Item'));
$this->_addContent($this->getLayout()->createBlock('banner/adminhtml_banner'));
$this->renderLayout();
}
/**
* Subscritpion save process
*/
public function saveAction(){
$this->_initAction();
$banner = Mage::registry('current_banner');
$data = $this->getRequest()->getParams();
if ($data) {
try {
$banner->addData($data);
$banner->save();
$this->_getSession()->addSuccess(Mage::helper('banner')->__('The banner item has been saved.'));
if ($this->getRequest()->getParam('back', false)) {
$this->_redirect('*/*/edit', array('id' => $banner->getId(), '_current'=>true));
return;
}
} catch (Exception $e) {
$this->_getSession()->addError($e->getMessage());
$this->_getSession()->setBannerData($banner->getData());
$this->_redirectUrl($this->getUrl('*/*/edit', array('id' => $banner->getId())));
return;
}
}
$this->_redirectUrl($this->getUrl('*/adminhtml_overview'));
}