Laravel 使用不同的列名重置密码
Laravel Reset Password Using Different Column Name
当涉及到使用不同的列名称(用户名、电子邮件或密码)进行授权时,我设法让它工作。
How to change / Custom password field name for Laravel 4 and Laravel 5 user authentication
但是密码提醒似乎不起作用。
我已将用户模型更改为我的 table 列名称。
用户模型:
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
use UserTrait, RemindableTrait;
protected $primaryKey = 'user_id';
protected $table = 'user';
public function getReminderEmail() {
return $this->user_email;
}
public function getAuthPassword() {
return $this->user_pwd;
}
public function getRememberTokenName() {
return 'user_token';
}
}
用户控制器
Auth::attempt( array(
'user_name' => $username,
'password' => $password
), TRUE );
提醒控制器//错误:未找到电子邮件列
(不确定,它没有读取用户模型 getReminderEmail())
public function post_reminder() {
switch ($response = Password::remind(Input::only('email'))) {
case Password::INVALID_USER:
return Redirect::back()->with('error', Lang::get($response));
case Password::REMINDER_SENT:
return Redirect::back()->with('status', Lang::get($response));
}
}
我花了好几个小时才弄明白。 Laravel 官方似乎没有给出适当的文档来实现自定义名称字段。
我们只需要将输入字段名称更改为与您的 table 列名称相同。
Field could be anything
<input type="email" name="user_email">
我认为我们可以添加自定义字段,以下是我想出的添加自定义字段的步骤。
1 - 在寄存器视图中添加 input
字段。
i.e. <input type="email" name="you_custome_field">
2 - 打开 app/services/Registrar.php 并在创建 function.i.e 中注册您的自定义字段。
public function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
'you_custome_field' => $data['you_custome_field'],
]);
}
3 -(可选)打开 user model
app/User。php 根据需要将字段注册为 guarded
或 fillable
。
我希望这会奏效。
当涉及到使用不同的列名称(用户名、电子邮件或密码)进行授权时,我设法让它工作。
How to change / Custom password field name for Laravel 4 and Laravel 5 user authentication
但是密码提醒似乎不起作用。
我已将用户模型更改为我的 table 列名称。
用户模型:
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
use UserTrait, RemindableTrait;
protected $primaryKey = 'user_id';
protected $table = 'user';
public function getReminderEmail() {
return $this->user_email;
}
public function getAuthPassword() {
return $this->user_pwd;
}
public function getRememberTokenName() {
return 'user_token';
}
}
用户控制器
Auth::attempt( array(
'user_name' => $username,
'password' => $password
), TRUE );
提醒控制器//错误:未找到电子邮件列 (不确定,它没有读取用户模型 getReminderEmail())
public function post_reminder() {
switch ($response = Password::remind(Input::only('email'))) {
case Password::INVALID_USER:
return Redirect::back()->with('error', Lang::get($response));
case Password::REMINDER_SENT:
return Redirect::back()->with('status', Lang::get($response));
}
}
我花了好几个小时才弄明白。 Laravel 官方似乎没有给出适当的文档来实现自定义名称字段。
我们只需要将输入字段名称更改为与您的 table 列名称相同。
Field could be anything
<input type="email" name="user_email">
我认为我们可以添加自定义字段,以下是我想出的添加自定义字段的步骤。
1 - 在寄存器视图中添加 input
字段。
i.e. <input type="email" name="you_custome_field">
2 - 打开 app/services/Registrar.php 并在创建 function.i.e 中注册您的自定义字段。
public function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
'you_custome_field' => $data['you_custome_field'],
]);
}
3 -(可选)打开 user model
app/User。php 根据需要将字段注册为 guarded
或 fillable
。
我希望这会奏效。