私はあなたの参照のために以下に述べるルートリストの束を持っています。私はそれを動的にする必要があります。laravel routesファイルに動的URLメソッドを書き込む方法は?
例:ルート
Route::get('artists/info', '[email protected]');
Route::post('artists/records', '[email protected]');
Route::post('artists/action', '[email protected]');
Route::post('artists', '[email protected]');
Route::put('artists/update/{id}', '[email protected]');
Route::post('artists/update-status/{id}', '[email protected]');
の
まずセット
ルート
Route::get('albums/info', '[email protected]');
Route::post('albums/records', '[email protected]');
Route::post('albums/action', '[email protected]');
Route::post('albums', '[email protected]');
Route::put('albums/update/{id}', '[email protected]');
Route::post('albums/update-status/{id}', '[email protected]');
に思え
第二組の両方のルートリストは、キーワード「アルバム、アーティスト以外は同じです、 AlbumApiController、ArtistApiController "と表示されます。だから私は必要なパラメータを渡すことによってそのコードを再利用するために動的にする必要があります。それは以下のように見えるか、あるいはどんな構文であっても見えるようになります。事前
これは明らかに文脈から外れていますが、1つのコントローラーアクションを呼び出す1つのキャッチオールルートを常に作成できます。次に、あなたのルートがすべて格納されたDBテーブルと、どのアクション/コントローラを使用するかなどの列があります。 – TheDeveloper