the*_*yen 3 laravel laravel-5 laravel-5.5 laravel-authentication
我在播种机中使用 Hash 加密密码,在我的控制器中,我使用 Auth 来检查来自客户端的请求,但它总是返回 false,我不知道为什么。
这是代码:
我的家庭控制器:
public function login(Request $request)
{
$username = $request->input('username');
$password = $request->input('password');
if( Auth::attempt(['mssv' =>$username, 'pass' =>$password])) {
$success = new MessageBag(['successlogin' => 'welcome']);
return view('welcome')->withErrors($success);
} else {
$errors = new MessageBag(['errorlogin' => 'Login fail']);
return redirect()->back()->withInput()->withErrors($errors);
}
}
}
Run Code Online (Sandbox Code Playgroud)
我的播种机有:
DB::table('sinhvien')->insert([
'hoten' => 'Nguy?n Ng?c Anh Th?',
'mssv' =>'DH51400668',
'pass' =>Hash::make('DH51400668'),
'created_at'=>date("Y-m-d H:i:s"),
'updated_at'=>date("Y-m-d H:i:s")
]);
Run Code Online (Sandbox Code Playgroud)
我的模型用户:
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $table='sinhvien' ;
protected $fillable = [
'mssv', 'hoten', 'pass',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'pass', 'remember_token',
];
}
Run Code Online (Sandbox Code Playgroud)
我的路由器有:
Route::post('/login', 'HomeController@login');
Run Code Online (Sandbox Code Playgroud)
但是当我请求播种机的信息时,Auth::attempt ()总是返回 false。
Hash::make从密码捕获字段中删除。使用Auth::attempt时会默认获取hash值并搜索DB。
尝试
$password = $request->input('password'); # remove Hash::make
if( Auth::attempt(['mssv' =>$username, 'pass' => $password])) { # remove quotes
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1733 次 |
| 最近记录: |