路由模型与查询字符串绑定

时间:2017-10-04 05:26:28

标签: php laravel

如果我有这样的网址:

localhost:8000?campaign=1

是否有可能像我们在路线模型绑定

中所做的那样从数据库中获取广告系列

1 个答案:

答案 0 :(得分:0)

您应该将查询字符串作为localhost:8000?campaign=1

传递,而不是localhost:8000/campaign/1

并在路线中:

Route::get('campaign/{id}', ['as' => 'campaigns.index', 'uses' => 'CampaignController@index']);

并在Controller中:

public function index($id)
{
    //Your Code Goes Here
}

就是这样! :)