2
$app->post('/', function () use ($app) {

    $email = new Input('email');
    $email->getValidatorChain()
          ->addValidator(new Validator\EmailAddress());

    $password = new Input('name');
    $password->getValidatorChain()
             ->addValidator(new Validator\StringLength(1));

    $inputFilter = new InputFilter();
    $inputFilter->add($email)
                ->add($password)
                ->setData($_POST);

    if ($inputFilter->isValid()) {

        // do stuff

        $app->redirect('/');

    } else {

        $field_errors = array();

        foreach ($inputFilter->getInvalidInput() as $field => $error) {
            foreach ($error->getMessages() as $message) {
                $field_errors[] = str_replace('Value', ucfirst($field), $message);
            }
        }

        $app->render('index.php', array('field_errors' => $field_errors));

    }
});

我目前使用 Slim 框架和 Zend InputFilter 使用上述代码。但是,我想检索错误消息。我不断得到“价值......”所以我str_replace对它们做了一个Email is not a valid email如下所示:

        $field_errors = array();

        foreach ($inputFilter->getInvalidInput() as $field => $error) {
            foreach ($error->getMessages() as $message) {
                $field_errors[] = str_replace('Value', ucfirst($field), $message);
            }
        }

这是从 Zend InputFilter 获取错误消息的正确方法还是还有其他什么?

4

1 回答 1

5

你只需要调用 $inputFilter->getMessages() 来获取一个键控数组:

array(
    'input' -> 'message', 
    'inputtwo' => 'anothermessage',
);

这在内部为您使用 getInvalidInput() ,因此不需要那些嵌套的 foreach 循环,对 getMessages() 的单个调用应该没问题。

于 2013-01-28T14:03:54.597 回答