php – 在Laravel 4中返回Input :::()多个输入

前端之家收集整理的这篇文章主要介绍了php – 在Laravel 4中返回Input :::()多个输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在与Laravel 4合作,

我正在使用验证器验证表单:

$validator = Validator :: make(Input :: all(),$rules);

失败时:

if ($validator->fails()) {
            return Redirect::to('register/test')
                            ->withErrors($validator)
                            ->withInput(Input::except('password')); // send back the input so that we can repopulate the form
        }

除了多个输入,我怎样才能返回输入,而不仅仅是密码?

我尝试过Input :: except(‘password’,’avatar’);但它不起作用.

任何帮助将不胜感激!

实际上,我发现我忘了把Input :: old(”)重新填充输入,

所以解决方案是exaclty我尝试过Input :: except(‘password’,’avatar’);

原文链接:https://www.f2er.com/laravel/137689.html

猜你在找的Laravel相关文章