我有带有广告的电子商务系统,所以我想计算广告卡的每次点击,所以我添加了 ad=true 以在我的控制器中检查它。它算得好,工作顺利
http://127.0.0.1:8000/product/3?ad=true
但问题是,如果页面已经刷新,它会越来越重要,所以我需要一种方法来删除这个参数 我该怎么做。如果还有其他方法,我愿意接受建议
处理请求后,您可以重定向到没有参数的同一路由。
例如,
public function action(Request $request)
{
/* Process the Request */
return redirect('theRouteName');
}
你可以试试这个
Route::get('/product/{id}', 'YourController@funciton');
public function multi_delete($id) {
$count = Input::get('ad');
// your code goes here
Redirect::route('product', $id)
}