当前位置:  开发笔记 > 前端 > 正文

405(方法不允许)laravel 5 for ajax

如何解决《405(方法不允许)laravel5forajax》经验,为你挑选了1个好方法。



1> Jai..:

405方法不允许

这意味着GET您在尝试POST请求时有一个路由处理程序,反之亦然.

检查您是否确实为ajax设置了相同的请求:

Route::post('/vendorReview','User@moverSearch');
//----^^^^^------check this in the controller method.

我的假设说你有一个get像:

Route::get('/vendorReview','User@moverSearch');
//-----^^^------check this in the controller method.

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有