我进行了如下路线:
Route::get('free-download/{product}' , 'ProductController@freeDownload')->name('product.free')->middleware('auth');
此路由在调用freeDownload方法之前检查用户是否已登录。如果没有,则显示登录表单。
然后,用户需要登录,登录控制器将返回首页,并且用户需要再次单击按钮路线(“ product.free”),以获取路线名称“ product.free”。
有一种方法可以只调用ProductController @ freeDownload方法 登录后是否单击过按钮?
希望我或多或少很清楚。
这是我的登录控制器:
class LoginController extends Controller
{
use AuthenticatesUsers;
/**
* Where to redirect users after login.
*
* @var string
*/
protected $redirectTo = '/';
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest')->except('logout');
}
}
最后是我的免费下载方法
public function freeDownload(Product $product){
$user_download = UserDownload::where('user_id' , auth()->user()->id)->where('product_id' , $product->id)->exists();
if(!$user_download && $product->file){
$user_download = new UserDownload();
$user_download->user_id = auth()->user()->id;
$user_download->product_id = $product->id;
$user_download->save();
$product->downloads = $product->downloads + 1;
$product->save();
return Storage::disk('s3')->download($product->file);
}else{
Alert::error('Download error', 'file not found');
return back();
}
}
答案 0 :(得分:1)
在登录控制器中使用intended
方法。
public function login(Request $request)
{
if ($this->guard()->attempt(...)) {
return redirect()->intended(route('home'));
} else {...}
}
它将被中间件捕获之前尝试重定向到预期的页面。如果找不到预期的页面,它将重定向到home
页面。