$userdata = array(
'email' => Input::get('email'),
'password' => Input::get('password')
);
if (Auth::attempt($userdata)) {
echo 'SUCCESS!';
} else {
return Redirect::to('login');
}
当我从浏览器运行应用程序时出现此错误:
Argument 1 passed to Illuminate\Auth\EloquentUserProvider::validateCredentials() must be an instance of Illuminate\Auth\UserInterface, instance of User given, called in /home/srtpl17/Sites/yatin.sr/vendor/laravel/framework/src/Illuminate/Auth/Guard.php on line 316 and defined
我做错了什么?
答案 0 :(得分:7)
从您的错误中可以看出,您的用户模型没有实现UserInterface(Laravel附带的默认用户模型正确执行此操作,所以我猜你做了一个自定义的)
http://github.com/laravel/laravel/blob/master/app/models/User.php
确保用户模型如下所示:
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
/**
* Get the unique identifier for the user.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}
/**
* Get the password for the user.
*
* @return string
*/
public function getAuthPassword()
{
return $this->password;
}
/**
* Get the e-mail address where password reminders are sent.
*
* @return string
*/
public function getReminderEmail()
{
return $this->email;
}
// Add your other methods here
}
答案 1 :(得分:1)
您没有显示userdata
定义的内容,但是从错误消息中可以看出它是您的User
模型类的实例。
Auth::attempt()
方法正在查找凭证数组而不是模型。
答案 2 :(得分:0)
当您为用户使用不同的模型时,也可能出现此错误(例如:member) 如果是这种情况,您需要使用适当的模型/数据库表更新app / config / auth.php中的身份验证模型和身份验证表。