Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

我叫做 eid 好像不好使啊。
是用在 product 和 tag 这两个实体之间。
这是定义在 product 模型上的

public function tags()
{
    return $this->morphToMany(Tag::class, 'taggable');
}

相关表结构

  • products

    • eid (主键)

    • ...

  • tagables

    • id (主键,递增)

    • tag_id

    • taggable_type

    • taggable_id


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
390 views
Welcome To Ask or Share your Answers For Others

1 Answer

不是的 可以自定义 你仔细看看官方的文档 当前表的主键可以设置 外键也可以设置 你上面写的方法能传3个参数


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...