我正在使用ZF2和Zend Form开展项目。我想在用户个人资料中添加头像。
问题是我只获取文件名并将其保存在数据库中。我想将它插入一个文件夹,这样我就可以得到它并显示它。表格的其余部分正在运作。
我的猜测是我必须从$ FILES获取信息,但我不知道如何做到这一点。我已阅读文档但无法看到如何将其应用于我的项目。
提前谢谢!
这是我的控制器动作
public function signinAction()
{
$this->em = $this->getServiceLocator()->get('doctrine.entitymanager.orm_default');
$form = new SignupForm($this->em);
$model = new ViewModel(array("form" => $form));
$url = $this->url()->fromRoute("signin");
$prg = $this->prg($url, true);
if($prg instanceof \Zend\Http\PhpEnvironment\Response){
return $prg;
}
else if($prg === false){
return $model;
}
$user = new User();
$form->bind($user) ;
$form->setData($prg) ;
if($form->isValid()){
$bcrypt = new Bcrypt() ;
$pwd = $bcrypt->create($user->getPassword());
$user->setPassword($pwd);
$this->em->persist($user) ;
$this->em->flush() ;
return $this->redirect()->toRoute('login');
}
return $model ;
}
这是我的表单文件:
class SignupForm extends Form
{
private $em = null;
public function __construct($em = null) {
$this->em = $em;
parent::__construct('frm-signup');
$this->setAttribute('method', 'post');
$this->setHydrator(new DoctrineEntity($this->em, 'Application\Entity\User'));
//Other fields
...
//File
$this->add(array(
'type' => "File",
'name' => 'avatar',
'attributes' => array(
'value' => 'Avatar',
),
));
//Submit
...
}
}
我认为的形式是:
$form = $this->form;
echo $this->form()->openTag($form);
//other formRow
echo $this->formFile($form->get('avatar'));
echo $this->formSubmit($form->get('submit'));
echo $this->form()->closeTag();
答案 0 :(得分:1)
有两件事你可以看到让你的头像工作:
gravatar.com
服务)
如果您遵循这些文档,您应该能够管理您想要的内容。
注意:特别检查输入过滤器文档中示例中the Zend\Filter\File\RenameUpload
filter的使用情况。此过滤器将上传的头像文件重命名/移动到所需位置。