今天学习提交保存文章时,老报以下错误
MethodNotAllowedHttpException
经过查找资料,发现是路由写错了,所以遇到此问题时要仔细检查路由。
// 创建文章 Route::get('/posts/crate','PostController@create'); // 存储文章 Route::post('/posts','PostController@create');
存储文章有两种形式,一种是对已经存在的新文章进行创建,另一种是新建文章。
今天学习提交保存文章时,老报以下错误
MethodNotAllowedHttpException
经过查找资料,发现是路由写错了,所以遇到此问题时要仔细检查路由。
// 创建文章 Route::get('/posts/crate','PostController@create'); // 存储文章 Route::post('/posts','PostController@create');
存储文章有两种形式,一种是对已经存在的新文章进行创建,另一种是新建文章。