Laravel 오류: Argument1passed to App\Http\Controllers\GroupControllers:index() must be of the type int,string given이 나타날 때
3153 단어 Laravel
TypeError
Argument 1 passed to App\Http\Controllers\GroupController::index() must be of the type int, string given
이 잘못에 대해 같은 잘못으로 괴로워하는 사람이 있다면 확인해 주시기 바랍니다.web.의심 php 루트 순서
전자는 오류가 발생했을 때의 경로이고, 후자는 오류가 사라졌을 때의 경로이다.
쓰는 순서가 다르다./groups/new
라고 부르려던 동작도 new
라고 착각해서 불렀어요.laravel은 규격에 적힌 설정을 먼저 읽습니다.
나는 라라바가 더욱 스마트한 해방을 준비했다고 생각하지만, 이번에는 순서를 간단하게 바꾸어 오류를 처리했다.
web.php//前者
//グループ一覧表示
Route::get('/groups/{id}', 'GroupController@index')->name('groups.index');
//グループを新規作成ページを表示
Route::get('/groups/new', 'GroupController@new')->name('group.new');
//グループを新規作成
Route::post('/groups/new', 'GroupController@store');
web.php//後者
//グループを新規作成ページを表示
Route::get('/groups/new', 'GroupController@new')->name('group.new');
//グループを新規作成
Route::post('/groups/new', 'GroupController@store');
//グループ一覧表示
Route::get('/groups/{id}', 'GroupController@index')->name('groups.index');
///groups/{id}のルーティングを一番下に移動
Reference
이 문제에 관하여(Laravel 오류: Argument1passed to App\Http\Controllers\GroupControllers:index() must be of the type int,string given이 나타날 때), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/miki-tea/items/ba44de244871f7064c7f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
//前者
//グループ一覧表示
Route::get('/groups/{id}', 'GroupController@index')->name('groups.index');
//グループを新規作成ページを表示
Route::get('/groups/new', 'GroupController@new')->name('group.new');
//グループを新規作成
Route::post('/groups/new', 'GroupController@store');
//後者
//グループを新規作成ページを表示
Route::get('/groups/new', 'GroupController@new')->name('group.new');
//グループを新規作成
Route::post('/groups/new', 'GroupController@store');
//グループ一覧表示
Route::get('/groups/{id}', 'GroupController@index')->name('groups.index');
///groups/{id}のルーティングを一番下に移動
Reference
이 문제에 관하여(Laravel 오류: Argument1passed to App\Http\Controllers\GroupControllers:index() must be of the type int,string given이 나타날 때), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/miki-tea/items/ba44de244871f7064c7f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)