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

Categories

0 votes
389 views
in Technique[技术] by (71.8m points)

请问使用 laravel 的多对多的多态关联父表主键必须是叫做'id'吗?

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

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

相关表结构

  • products

    • eid (主键)

    • ...

  • tagables

    • id (主键,递增)

    • tag_id

    • taggable_type

    • taggable_id


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

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...