繁体   English   中英

在Eloquent ORM中用不同的主键覆盖用户ID后,如何获取用户ID?

[英]How can I fetch user ID after overriding it with different primary key in Eloquent ORM?

用户模型返回id=null ,而调试时我发现此问题的原因是在我的User模型中,我User自定义$primary_key覆盖了$primary_key

用户模型

class User extends Authenticatable
{
    use Notifiable;
    // Set the primary key to the generated version instead of the regular ID
    protected $primaryKey = 'user_code';
    // Set the key type
    protected $keyType = 'string';
    // Diable the auto-increment option
    public $incrementing = false;
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'user_code',
        'fname',
        'mname',
        'lname',
        'email',
        'dob',
        'age',
        'gender',
        'insurance_number',
        'ssn',
        'avatar',
        'is_active',
        'userable_id',
        'userable_type',
    ];
}

我有以下代码生成使用id的新user_code

$user = new User;
$user = $user->create([
    'fname' => $request->fname,
    'lname' => $request->lname,
    'email' => $request->email,
]);
// Save the user in the DB
// Generate a usercode for the newely created user
$userCode = "ur" . date('y') . date('m') . $user->id;

用户迁移:

        Schema::create('users', function (Blueprint $table) {
            $table->increments('id');
            $table->string('user_code')->unique()->nullable();
            $table->string('fname')->default('tbd');
            $table->string('mname')->default('tbd');
            $table->string('lname')->default('tbd');
            $table->string('email')->unique()->nullable();
            $table->date('dob')->default('1000-01-01');
            $table->integer('age')->default(0);
            $table->string('gender')->default('tbd');
            $table->integer('insurance_number')->default(0);
            $table->integer('ssn')->default(0);
            $table->string('avatar')->default('tbd');
            $table->boolean('is_active')->default(false);
            $table->string('userable_code')->default('tbd');
            $table->string('userable_type')->default('tbd');
            $table->timestamp('email_verified_at')->nullable();
            $table->rememberToken();
            $table->timestamps();
        });

$user->id返回null,为什么会发生这种现象?

您已将$user设置为新的模型实例:

$user = new User;

但是,然后您尝试从该实例创建一个新用户,这将不起作用:

$user = $user->create([ ...

由于这行不通,因此您实际上并没有将任何内容保存到数据库,也不会获得ID。

问题的第二部分是(如@TimLewis在注释中指出的那样),您正在尝试创建和保存带有空白主键( user_code )的模型。 那是行不通的,因此您需要先弄清楚ID是什么, 然后再尝试保存它。

// Remove this line:
// $user = new User;

// Find the current highest ID:
$last = User::max('id');

// Your new user will have this ID
$newID = $last->id + 1;

// And just use the normal way to create and save a model:
$user = User::create([
    'userCode'  => "ur" . date('y') . date('m') . $newID,
    'fname'     => $request->fname,
    'lname'     => $request->lname,
    'email'     => $request->email,
]);

我可能不知道您要在这里实现什么,但是我只是假设这是一个非常特殊的用例。

尝试这个:

// Notice how we are using the User as a class, not instantiating it.
$user = User::create([
    'fname' => $request->fname,
    'lname' => $request->lname,
    'email' => $request->email,
]);

// Save the user in the DB
// Generate a usercode for the newely created user
$userCode = "ur" . date('y') . date('m') . $user->id;

假设您的数据库表中的id列仍为INCREMENTSPRIMARY KEY

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM