Zend Form:调用未定义的方法Zend \ InputFilter \ InputFilter :: getFilterChain()

时间:2016-10-05 12:58:58

标签: php zend-framework zend-form

我正在尝试使用Zend Form上传图片。由于我们需要它来移动图像,我想添加一个过滤器来完成这项工作。但我不能使用getInputFilterChain(),我一直有这个致命的错误:Call to undefined method Zend\InputFilter\InputFilter::getFilterChain()。我在这里错过了什么?

我能够在$ prg数组中获取文件信息。当我查看https://framework.zend.com/manual/2.4/en/modules/zend.mvc.plugins.html时,这个方法应该存在于此,不是吗?

如果我在Form.php文件中使用它,我会得到同样的错误。

提前感谢您的时间!

我的控制器操作:

public function signinAction()
{
    $this->em = $this->getServiceLocator()->get('doctrine.entitymanager.orm_default');

    $form = new SignupForm($this->em);

    $form->getInputFilter()->getFilterChain()->attach(
        new Zend\Filter\File\RenameUpload(array(
            'target'    => './data/tmpuploads/file',
            'randomize' => true,
        ))
    );

    $model = new ViewModel(array("form" => $form));


    $url = $this->url()->fromRoute("signin");
    $prg = $this->fileprg($form, $url, true);

    if($prg instanceof \Zend\Http\PhpEnvironment\Response){       
        return $prg;
    }
    else if($prg === false){
       return $model;
    }

    //other stuff
    ...
}

1 个答案:

答案 0 :(得分:1)

您需要首先从Input获取InputFilter实例,然后您可以从输入中获取过滤器链:

$inputName = 'file'; // name of the input you want to work with
$input = $form->getInputFilter()->get($inputName);
$filterChain = $input->getFilterChain();