Laravel留言袋错误

时间:2014-06-03 09:35:38

标签: php laravel laravel-4

我正在为项目的新闻稿进行表单验证,每个页面上都会出现新闻信函表格,因此它也会显示在longin和注册页面上,所以我决定使用Laravel Message Bags来存储新闻信件错误,但它不断给我一个未定义的属性错误在实际的页面上我检查并输出回显错误,我不知道我在做错了,这里是细节!

错误:

Undefined property: Illuminate\Support\MessageBag::$newsletter

我的代码在Controller中:

return Redirect::back()->withInput()->withErrors($inputs, "newsletter");

我在视图中的代码:

 @if($errors->newsletter->any())

 <p>
    {{$errors->newsletter->any()}}
 </p>

4 个答案:

答案 0 :(得分:6)

RedirectResponse类函数withErrors()没有第二个参数..

函数vendor\laravel\framework\src\Illuminate\Http\RedirectResponse.php -> withErrors()

/**
 * Flash a container of errors to the session.
 *
 * @param  \Illuminate\Support\Contracts\MessageProviderInterface|array  $provider
 * @return \Illuminate\Http\RedirectResponse
 */
public function withErrors($provider)
{
    if ($provider instanceof MessageProviderInterface)
    {
        $this->with('errors', $provider->getMessageBag());
    }
    else
    {
        $this->with('errors', new MessageBag((array) $provider));
    }

    return $this;
}

所以,如果你真的想使用MessageBag那么这应该有用(没有测试):

$your_message_bag = new Illuminate\Support\MessageBag;
$your_message_bag->add('foo', 'bar');

return Redirect::back()->withInput()->withErrors($your_message_bag->all());

答案 1 :(得分:5)

控制器中的代码:

         $post_data = Input::all();

    $validator = Validator::make(Input::all(),
        array(
            'email' => 'required',
            'password' => 'required'
        ));


    if ($validator->fails()) {

        return Redirect::back()
            ->withInput()
            ->withErrors(['auth-validation' => 'ERROR: in validation!']);
    } 

vew中的代码:

@if($errors->any())
    @foreach($errors->getMessages() as $this_error)
        <p style="color: red;">{{$this_error[0]}}</p>
    @endforeach
@endif 

答案 2 :(得分:1)

withErrors应该从验证者对象接收消息。在您的验证过程之后,例如:

  $validation = Validator::make(Input::all(), $validation_rules);
  if (!$validation->passes()){
       return Redirect::back()->withInput()->withErrors($validation->messages());
  }

我希望它适合你。

答案 3 :(得分:0)

您可以编写这样的函数

if(!function_exists('errors_for')) {

 function errors_for($attribute = null, $errors = null) {

    if($errors && $errors->any()) {

        return '<p class="text-danger">'.$errors->first($attribute).'</p>';

    }   

 }

}

然后在您的视图中

<div class="form-group">
   <label for="bio">Bio</label>
   <textarea class="form-control" name="bio"></textarea>
</div>
{!! errors_for('bio',$errors) !!}

从Jeffrey Way的Laracasts学习