laravel 報MethodNotAllowedHttpException錯誤

今天報了這樣一個錯誤,本人是因爲是get傳參跳轉地址,可是路由文件裏寫成了post訪問,結果報了這個錯誤。post

例:ui

window.location.href='{{ route('customer_circulation',["uid"=>$uid])}}';
Route::get('customer_circulation/{uid}',['uses' => 'UserinfoController@customer_circulation','as' => 'customer_circulation']);

上面紅色標註的地方必定要寫get,any,由於是route中攜帶參數是get傳參,用post是不行的。spa

相關文章
相關標籤/搜索