繁体   English   中英

Laravel在Eloquent mutators中保存了多对多的关系

[英]Laravel save many-to-many relationship in Eloquent mutators

我有两个具有多对多关系的模型。 我希望能够使用一组id设置一个特定的属性,并在mutator中建立这样的关系:

<?php

class Profile extends Eloquent {

    protected $fillable = [ 'name', 'photo', 'tags' ];
    protected $appends = [ 'tags' ];

    public function getTagsAttribute()
    {
        $tag_ids = [];
        $tags = $this->tags()->get([ 'tag_id' ]);

        foreach ($tags as $tag) {
            $tag_ids[] = $tag->tag_id;
        }

        return $tag_ids;
    }

    public function setTagsAttribute($tag_ids)
    {
        foreach ($tag_ids as $tag_id) {
            $this->tags()->attach($tag_id);
        }
    }

    public function tags()
    {
        return $this->belongsToMany('Tag');
    }

}

<?php

class Tag extends Eloquent {

    protected $fillable = [ 'title' ];
    protected $appends = [ 'profiles' ];

    public function getProfilesAttribute()
    {
        $profile_ids = [];
        $profiles = $this->profiles()->get([ 'profile_id' ]);

        foreach ($profiles as $profile) {
            $profile_ids[] = $profile->profile_id;
        }

        return $profile_ids;
    }

    public function profiles()
    {
        return $this->belongsToMany('Profile');
    }

}

但是setTagsAttribute函数没有按预期工作。 我收到以下错误: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'profile_id' cannot be null (SQL: insert into profile_tag ( profile_id , tag_id ) values (?, ?)) (Bindings: array ( 0 => NULL, 1 => 1, ))

在保存模型之前,不能附加多对多关系。 在设置$model->tags之前在模型上调用save() ,你应该没问题。 原因是模型需要具有Laravel可以放入数据透视表的ID,这需要两个模型的ID。

看起来你正在调用函数不正确或从未初始化的模型调用。 该错误表明profile_id为NULL。 因此,如果您将函数调用为$profile->setTagsAttribute() ,则需要确保在数据库中使用ID初始化$ profile。

$profile = new Profile;
//will fail because $profile->id is NULL
//INSERT: profile->save() or Profile::Create();
$profile->setTagsAttribute(array(1,2,3));  

此外,您可以将数组传递给attach函数以一次附加多个模型,如下所示:

$this->tags()->attach($tag_ids);

您也可以传递模型而不是ID(但很可靠的模型数组不起作用)

尝试使用同步方法:

class Profile extends Eloquent {
    protected $fillable = [ 'name', 'photo', 'tags' ];
    protected $appends = [ 'tags' ];

    public function getTagsAttribute()
    {
        return $this->tags()->lists('tag_id');
    }

    public function setTagsAttribute($tag_ids)
    {
        $this->tags()->sync($tagIds, false);
        // false tells sync not to remove tags whose id's you don't pass.
        // remove it all together if that is desired.
    }

    public function tags()
    {
        return $this->belongsToMany('Tag');
    }

}

不要通过tags()函数访问标记,而是使用tags属性。 如果要在关系查询和属性上弹出其他参数(如果只想抓取标记),请使用函数名称。 tags()在你的getter中工作,因为你最后使用了get()

public function setTagsAttribute($tagIds)
{
    foreach ($tagIds as $tagId)
    {
        $this->tags->attach($tagId);
    }
}

暂无
暂无

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

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