MethodNotAllowedHttpException($等);验证时出现错误(Laravel 5.5)

时间:2017-11-19 04:31:24

标签: laravel laravel-5 validate-request

我有两条路线:

Route::post('/post_2', 'TestController@post_2')
    ->name('post_2');
Route::post('/result', 'TestController@result')
    ->name('result');

和TestController如下。

public function post_2(){
    return view('post_2View');
}
public function result(\App\Http\Requests\Post_2Request $request){
    return "Successful";
}

Post_2View

<form action="{{route('result')}}" method="post">
           {{ csrf_field() }}
        <input type="text" name="checkValidate">
        <input type="submit" value="Submit">
    </form>

最后一个是在Post_2View

中验证checkValidate输入的请求
public function rules()
{
    return [
        'checkValidate'=>'required'
    ];
}
public function messages() {
    return [
        'checkValidate.required'=>"This field is required"
    ];
}

当我在checkValidate输入中有数据时,一切正常,但当请求文件返回错误时,我在浏览器中看到错误

**
 * Throw a method not allowed HTTP exception.
 *
 * @param  array  $others
 * @return void
 *
 * @throws \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
 */
protected function methodNotAllowed(array $others)
{
    throw new MethodNotAllowedHttpException($others);
}

请告诉我,我该如何解决。 感谢。

2 个答案:

答案 0 :(得分:0)

由于您未向/post_2发送任何数据,请使用get动词而不是post请求

  Route::get('/post_2', 'TestController@post_2')
->name('post_2');

或者你可以同时使用

  Route::match(['get', 'post'],'/post_2', 'TestController@post_2')
->name('post_2');

因为当您在验证后回来时会收到请求

答案 1 :(得分:0)

我找不到发生此异常的原因,但是我找到了一个解决方案,如果验证失败,则不会返回MethodNotAllowedHttpException

            $validator = Validator::make($request->all(),[
                'name' => 'required'
            ]);

            if ($validator->fails()) {
                return response()->json(['message'=>'Name field is required'],422);
            }