提问者:小点点

Hash::check()可以工作,但Auth::尝试失败(自定义用户模型)


我正在学习Laravel 4,但现在我无法将用户登录到我的应用程序中。我阅读了多个教程来创建登录区域,但我不能创建会话。

解决方案:laravel 4自定义命名密码列

您必须小心使用“password”索引,无论您的表如何命名password字段,它在Auth::trust函数中都必须是“password”

用户数据库表:

  • idusuario, int(11)
  • 登录,varchar(45)
  • nombre, varchar(45)
  • 反转,反转(255)
  • 状态,bool
  • remember_token, varchar(100)
  • idperfil-int(11)

这是我的自动诱惑功能:

Route::post('login', function()
{
    if(Auth::attempt([ 'login' => Input::get('login'), 'contrasena' => Input::get('password') ]))
        return Redirect::intended('home');
    return Redirect::to('login')->with('response','Ingreso invalido');
}

我的自定义用户模型:

use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;

class Usuario extends Eloquent implements UserInterface, RemindableInterface {

    protected $table = 'usuario';
    protected $hidden = array('contrasena');
    protected $fillable = array('login', 'nombre', 'status', 'idperfil');
    protected $guarded = array('idusuario', 'contrasena');
    public $primaryKey = 'idusuario';
    public $timestamps = false;

    public function getAuthIdentifier()
    {
        return $this->login;
    }

    public function getAuthPassword()
    {
        return $this->contrasena;
    }

    public function getRememberToken()
    {
        return $this->remember_token;
    }

    public function setRememberToken($value)
    {
        $this->remember_token = $value;
    }

    public function getRememberTokenName()
    {
        return 'remember_token';
    }

    public function getReminderEmail()
    {
        return false;
    }

我的看法是:

{{ Form::open(array('url' => 'login', 'role' => 'form')) }}
    <div class="response">{{ $response or '' }}</div>
    <div class="form-group">
        <label for="login">Usuario</label>
        <input type="text" class="form-control" id="login" name="login" placeholder="Ingrese su login">
    </div>
    <div class="form-group">
        <label for="password">Contraseña</label>
        <input type="password" class="form-control" id="password" name="password" placeholder="*********">
    </div>
    <button type="submit" class="btn btn-primary">Iniciar Sesión</button>
</form>

我一直在测试

dd(Auth::attempt([ 'login' => Input::get('login'), 'contrasena' => Input::get('password') ]));

但是我不能修复它,但是当我测试哈希检查来验证密码时,它会返回true!有什么想法吗?提前感谢!


共1个答案

匿名用户

对不起,我没有读第二篇。Jarek Tkaczyk在这篇文章中的回答。如果你有同样的问题,一定要检查你的索引名。