3
私はCodeIgniterを使用しています。 CodeIgniterにIon authを統合しましたが、ユーザー名と電子メールの両方でログインする方法に問題があります。ユーザー名と電子メールの両方でログインする方法。Ion Authでログインユーザー名とメールアドレス
私はCodeIgniterを使用しています。 CodeIgniterにIon authを統合しましたが、ユーザー名と電子メールの両方でログインする方法に問題があります。ユーザー名と電子メールの両方でログインする方法。Ion Authでログインユーザー名とメールアドレス
ion_auth_modelで最初にgoto ion_auth_modelと検索ログイン機能があり、この行が表示されます。このor_whereを追加()句
->where($this->identity_column, $identity)
->or_where('username',$identity)
->limit(1)
->order_by('id', 'desc')
->get($this->tables['users']);
後
$query = $this->db->select($this->identity_column .", ".$extraSelect.', email, id, password,active, last_login')
このラインにユーザ名を追加します
$query = $this->db->select($this->identity_column .", ".$extraSelect.', username, email, id, password,active, last_login')