现在在 Laravel 中我正在测试 url 并且在路由中我有
Route::group(['prefix' => 'game'], function (){
Route::get('/location/{location?}/action/{action?}/screen/{screen?}','GameController@index')->name('game.index');
});
在控制器中,当我想传递参数时,我必须输入
example.com/game/location/1/action/update/screen/main
如果我只想传递位置和屏幕,我在 url 中有一个错误原因,第二个参数应该是 action。
我可以创建像
example.com/game/?location=1&screen=main
和控制器 $request->screen 和 location 工作正常。但是有什么方法可以不使用 & 吗?并这样做:
example.com/game/location/1/screen/main
UYOU
肥皂起泡泡