Laravel 10 自定义登录/注册不会进入仪表板页面
P粉162773626
2023-09-05 14:04:13
<p>我正在尝试制作自己的自定义 Laravel 10 登录/注册,因为我不想使用 breez 包,因为我想了解如何自己进行登录/注册。</p>
<p>但我似乎无法通过仪表板页面的身份验证。</p>
<p>我在仪表板函数上使用 if 语句 <code>if(Auth::check())</code> 来对数据库中的用户进行身份验证。</p>
<p>但对我来说这不起作用,因为我不断收到从重定向回登录页面的错误消息(<strong>这只在我将新用户注册到数据库中时才会发生</strong>),但每当我尝试登录 我从登录功能中收到成功消息(<strong>进一步查看代码</strong>),同时仍在登录页面中。</p>
<p><strong>AuthController(仪表板):</strong></p>
<pre class="brush:php;toolbar:false;">public function dashboard(): View
{
if(Auth::check()) {
return view('auth.dashboard');
}
return view('auth.login')->with('error', 'You are not allowed to access');
}</pre>
<p><strong>AuthController(登录):</strong></p>
<pre class="brush:php;toolbar:false;">public function loginPost(Request $request): RedirectResponse
{
$request->validate([
'email' => 'required',
'password' => 'required'
]);
$credentials = $request->only('email', 'password');
if(Auth::attempt($credentials)) {
$request->session()->regenerate();
return redirect()->intended(route('dashboard'))->with('success', 'You have successfully logged in');
}
return redirect(route('login'))->with('error', 'Oppes! You have entered invalid credentials');
}</pre>
<p><strong>web.php</strong></p>
<pre class="brush:php;toolbar:false;">Route::get('/register', [AuthController::class, 'register'])->name('register');
Route::post('/register', [AuthController::class, 'registerPost'])->name('register.post');
Route::get('/login', [AuthController::class, 'login'])->name('login');
Route::post('/login', [AuthController::class, 'loginPost'])->name('login.post');
Route::get('/dashboard', [AuthController::class, 'dashboard'])->name('dashboard');
Route::post('/logout', [AuthController::class, 'logout'])->middleware('auth')->name('logout');</pre>
<p>我还没有找到任何解决方案,因此如果有人可以帮助我,我将不胜感激。</p>
hii,您的注销功能受到中间件的保护,您还需要添加仪表板路由中间件,您可以对需要身份验证中间件的路由进行分组。
您的路线
您的控制器:
您的登录刀片
您的注册页面
我想这会解决您的所有疑问