gpt4 book ai didi

php - Laravel 5.6.14 中的 "405 Method not allowed"

转载 作者:可可西里 更新时间:2023-11-01 00:08:05 32 4
gpt4 key购买 nike

我只是在学习 laravel 资源方法来构建一个基本的 API。下面是我的 api.php 文件的代码,它显示了所有 API 路由。

// List Articles
Route::get('articles', 'ArticleController@index');

// List Single Article
Route::get('article/{id}', 'ArticleController@show');

// Create New Article
Route::post('article', 'ArticleController@store');

// Update Article
Route::put('article', 'ArticleController@store');

// Delete Article
Route::delete('article/{id}', 'ArticleController@destroy');

这对 getdelete 方法非常有效。但是对于 Post 方法,它抛出错误“405 Method not allowed”。我正在使用 Postman 来测试 API 调用。

具体来说,下面是 Postman 显示的确切错误

Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException

同时附上Postman的截图 enter image description here

最佳答案

像这样改变你的商店路线:

Route::post('article/store', 'ArticleController@store');

因为你从 Postman 发送 post 请求到

/article/store

enter image description here

关于php - Laravel 5.6.14 中的 "405 Method not allowed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49569707/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com