RouteCollection.php第218:4行中的MethodNotAllowedHttpException
作者:互联网
在Laravel中提交表单时,我将获得MethodNotAllowedHttpException
HTML文件
<form method="POST" action="/cards/{{$card->id}}/notes">
<input name="_token" type="hidden" value="{{ csrf_token() }}"/>
<textarea name="body" class="form-control"></textarea>
<button type="submit">Add Note</button>
</form>
routes.php文件
Route::post('cards/{card}/notes','NotesController@store');
NotesController.php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
class NotesController extends Controller
{
public function store()
{
return request()->all();
}
}
解决方法:
确保您没有路线,例如说一个Route :: post,其参数位于您要点击的路线的前面.
例如:
Route::post('{something}', 'SomethingController@index');
Route::post('cards/{card}/notes', 'NotesController@store');
在这种情况下,无论您尝试将什么发送到纸牌路线,它都将始终命中某条路线,因为{something}会将纸牌作为有效参数进行拦截并触发SomethingController.
将东西路线放在纸牌路线下方,它应该可以工作.
标签:laravel-5-3,php 来源: https://codeday.me/bug/20191011/1895713.html