许多Laravel 4使用基于字符串的主键

时间:2014-02-11 17:04:26

标签: php laravel-4 eloquent

鉴于一些模型试图使用Contact :: sync(array(1,2,3))来添加邮件列表失败,因为主键email_address没有填写。

表格结构:

Contacts
    - email_address string (PK)
    - name          string

MailingLists
    - id    integer (PK)
    - name  string

ContactMailingLists
    - contact_id      string (PK, FK)
    - mailing_list_id integer (PK, FK)

和模特:

<?php

class MailingList extends Eloquent
{
    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'mailing_lists';

    /**
     * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
     */
    public function contacts ()
    {
        return $this->belongsToMany('\Application\Entity\Contact', null, 'id', 'email_address')->withTimestamps();
    }
}

class Contact extends Eloquent 
{
    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'contacts';

    /**
     * @var string
     */
    protected $primaryKey = 'email_address';

    /**
     * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
     */
    public function mailing_lists ()
    {
        return $this->belongsToMany('\Application\Entity\MailingList', null, 'id', 'mailing_list_id')->withTimestamps();
    }
}

在eloquent中使用 - &gt; sync()或其他关系函数时会产生错误。 sync()方法会产生错误,因为在插入时,email_address设置为0而不是email_address。

编辑:在代码中添加了相关的密钥。

2 个答案:

答案 0 :(得分:2)

将模型设置为不再尝试自动递增主键。

在没有自动递增键的任何型号(例如email_address)上添加此项。

public $incrementing = false;

答案 1 :(得分:1)

在声明关系以及custom key名称时,您应该传递pivot table

public function mailing_lists ()
{
    return $this->belongsToMany('\Application\Entity\MailingList', 'ContactMailingLists', 'email_address', 'MailingList_id')
                ->withTimestamps();
}

检查the manual