我坚持使用默认的Laravel Auth。我是通过php artisan make:auth
生成的。
我的用户表需要的字段多于默认字段。这是我对该表的迁移。
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('first', 20)->nullable();
$table->string('last', 20)->nullable();
$table->string('email', 50)->unique();
$table->string('password', 20);
$table->integer('userRoleId')->unsigned()->index();
$table->integer('userGroupId')->unsigned()->index();
$table->integer('companyId')->unsigned()->index();
$table->rememberToken();
$table->timestamps();
});
}
public function down()
{
Schema::drop('users');
}
}
然后我修改了User.php
模型并更新了$fillable
字段。
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
protected $fillable = [
'first', 'last', 'email', 'password', 'userRoleId', 'userGroupId', 'companyId',
];
protected $hidden = [
'password', 'remember_token',
];
}
当我提交表单时,它会正确地发布到数据库并存储。我可以看到这一行。
问题是,现在当我退出创建新用户并返回登录并填写表单后,它会返回错误,说明电子邮件地址我输入与任何记录都不匹配,即使数据库中显然有一行具有相同的数据和相同的列名。
我做错了什么?
答案 0 :(得分:0)
@The Alpha在评论中的回答解决了我的问题。
我的流程是正确的,除非我没有考虑密码是经过哈希处理的,而且我的数据库字段中的哈希值不足。
$table->string('password', 20);
需要更改为$table->string('password', 60);