我正在为我的magento管理模块开发一个新的网格,我已经在 From 中添加了这个字段来上传文件或图像:
$fieldset->addField('type_prev', 'file',
array(
'label' => 'Preview',
'required' => false,
'name' => 'type',
));
但是在我的控制器中,当我尝试获取以下值时:
Zend_Debug::dump($_FILES['type_prev']);
我得到了这个错误:注意:未定义的索引:type_prev ...
所有其他领域都运作良好!
这是我的表单声明:
protected function _prepareForm()
{
$form = new Varien_Data_Form(
array(
'id' => 'edit_form',
'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))
),
'method' => 'post',
'enctype' => 'multipart/form-data'
)
);
$form->setUseContainer(true);
$this->setForm($form);
return parent::_prepareForm();
}
你能帮忙吗?
谢谢