この記事ではLaravel5.4でのマルチフィールドログインの実装方法を中心に紹介していますので、参考にしてください。要件の 1 つは、マルチフィールド ログインの効果を実現することです。つまり、携帯電話または電子メールの任意の方法を使用してログインできるようになります。ここで解決プロセスを共有するので、この記事では主に の実装について紹介します。 Laravel5.4に基づいたマルチフィールドログイン。必要な方は以下の機能に関する情報を参照してください。
まえがき最近、プロジェクトに複数フィールドのログイン機能を実装する必要がありました。簡単に言うと、ユーザー名を使用できます。 、電子メールまたは携帯電話のいずれかの方法でログインします。したがって、この記事では、Laravel5.4 マルチフィールドログインに関する関連コンテンツを紹介し、参考と学習のために共有します。早速、詳細な紹介を見てみましょう。
#以下の内容はlaravel5.4をベースにしています
#メソッドは次のとおりです。 #まず、artisan ツールを使用します。 Generate auth modulephp army make:auth
この時点で、Auth ディレクトリが App\Http\Controllers に追加されますコントローラでは、resources\views ディレクトリも登録とログインに関連するビューを生成します。
laravel の公式ドキュメントには、ユーザーの手動認証には試行メソッドが必要であると記載されています。 <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Auth;
class LoginController extends Controller
{
/**
* Handle an authentication attempt.
*
* @return Response
*/
public function authenticate()
{
if (Auth::attempt([&#39;email&#39; => $email, &#39;password&#39; => $password])) {
// Authentication passed...
return redirect()->intended(&#39;dashboard&#39;);
}
}
}</pre><div class="contentsignin">ログイン後にコピー</div></div>
このメソッドは、渡されたパラメータに基づいてデータベース内に一致するユーザーがあるかどうかを判断します。ユーザーが存在し、パスワードが正しい場合は、の場合は true を返します。それ以外の場合は false を返します。
次に、LoginController メソッドにユーザーを追加しますが、効果はないようです。
そこで、LoginController の実装メカニズムを観察し始めて、次のことがわかりました。このトレイトの定義ファイルを追跡したところ、このファイルが必要なものであることがわかりました。
このファイルには、ログイン ロジックの処理を担当するログイン メソッドがあります。
/** * Handle a login request to the application. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\Response */ public function login(Request $request) { // 表单验证 $this->validateLogin($request); // If the class is using the ThrottlesLogins trait, we can automatically throttle // the login attempts for this application. We'll key this by the username and // the IP address of the client making these requests into this application. // 防止暴力破解,多次登录失败会根据IP锁定 if ($this->hasTooManyLoginAttempts($request)) { $this->fireLockoutEvent($request); return $this->sendLockoutResponse($request); } // 这个就是主要的负责判断数据库中是否存在相应的账号和密码的地方,我们需要重写的就是attemptLogin方法 if ($this->attemptLogin($request)) { return $this->sendLoginResponse($request); } // If the login attempt was unsuccessful we will increment the number of attempts // to login and redirect the user back to the login form. Of course, when this // user surpasses their maximum number of attempts they will get locked out. // 登录失败,失败次数++,防止暴力破解 $this->incrementLoginAttempts($request); // 返回失败响应 return $this->sendFailedLoginResponse($request); }
このファイルの wave を分析した結果、ログインを決定する主なメソッドは、attemptLogin メソッドであることがわかりました。まず、このメソッドがどのように記述されているかを見てみましょう。元の内容に従って書き換えます:
/** * Attempt to log the user into the application. * * @param \Illuminate\Http\Request $request * @return bool */ protected function attemptLogin(Request $request) { return $this->guard()->attempt( $this->credentials($request), $request->has('remember') ); }
LoginController を書き換えた後:
public function attemptLogin(Request $request) { $username = $request->input('username'); $password = $request->input('password'); // 验证用户名登录方式 $usernameLogin = $this->guard()->attempt( ['username' => $username, 'password' => $password], $request->has('remember') ); if ($usernameLogin) { return true; } // 验证手机号登录方式 $mobileLogin = $this->guard()->attempt( ['mobile' => $username, 'password' => $password], $request->has('remember') ); if ($mobileLogin) { return true; } // 验证邮箱登录方式 $emailLogin = $this->guard()->attempt( ['email' => $username, 'password' => $password], $request->has('remember') ); if ($emailLogin) { return true; } return false; }
成功した限り、attempt メソッドを使用して複数の判定を行います。失敗した場合は true を返します。 、引き続き他のフィールドを使用して判断します。失敗した場合は、複数フィールドのログイン効果を実現できる fle
Test が返されます。
以上がこの記事の全内容です。皆さんの学習に役立つことを願っています。関連コンテンツについては、PHP 中国語 Web サイトに注目してください。
関連する推奨事項:
Laravel を使用して SMS 登録を実装する方法Laravel を使用してスケジュールされたタスクを実装する方法
以上がLaravel5.4での複数フィールドログインの実装方法についての詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。