Laravel 获得路线工作,发布不要

Posted

技术标签:

【中文标题】Laravel 获得路线工作,发布不要【英文标题】:Laravel get routes work, post don't 【发布时间】:2013-01-26 10:17:34 【问题描述】:

我只是想不通,为什么在我的本地环境中,以下路线可以完美运行....而在我提供的暂存环境中,为了测试代码,它不能按预期工作

路线:

Route::controller(Controller::detect());

...

Route::get('api', array(
        'as' => 'api_index',
        'uses' => 'api@index',
));

Route::get('api/(:any)/(:any)', 'api.(:1)@(:2)');
Route::post('api/(:any)/(:any)', 'api.(:1)@(:2)');
Route::put('api/(:any)/(:any)', 'api.(:1)@(:2)');
Route::delete('api/(:any)/(:any)', 'api.(:1)@(:2)');

问题在于我的发布请求,因为它们只是找不到并且总是返回 404 而不是请求。示例:

POSThttp://staging.test.com/api -> 404 POSThttp://staging.test.com/api/user -> 404 POSThttp://staging.test.com/api/user/session -> 404

以上所有测试都在我的本地环境中工作。 GET 方法有效(除了POST,我测试过的唯一一个)

那么我错过了什么?

更新

尝试更改Routes:: 的顺序,并尝试了不同的方法...但仍然是相同的结果

【问题讨论】:

Controller::detect() 已知有问题 - 只需手动放入所有控制器即可。 controller:detect() 之后我添加了Route::controller(array('api.user', 'api.device')); 仍然得到相同的结果 【参考方案1】:

正如@TheShiftExchange 所说,这似乎是错误Controller::detect() 的错。

也试过了:

Route::controller(array('api.user', 'api.device'));

但只能使用它:

Route::controller('api.user');
Route::controller('api.device');

【讨论】:

以上是关于Laravel 获得路线工作,发布不要的主要内容,如果未能解决你的问题,请参考以下文章

Laravel:我如何获得当前路线

如何在 Laravel 8 上获得正确的路线

我如何获得资源存储路线 laravel

Laravel 的参数获取

php laravel框架学习笔记 基本工作原理

Laravel 在身份验证异常时自动重定向