Rails的belongs_to的很多车型 [英] Rails belongs_to many models

查看:86
本文介绍了Rails的belongs_to的很多车型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我没有找到SO Rails的协会是有点像我的问题了一些问题,但对我的生活中,我似乎无法理解如何使用 belongs_to的多个模型。

I did find some questions on SO about Rails associations that are somewhat like my question, but for the life of me I can't seem to understand how to use belongs_to multiple models.

这里的表结构的我打算有:

User
 id

Post
 id
 user_id #foreign key; a post belongs to a User aka "Who created this post"

Comment
 id
 user_id #foreign key; a comment belongs to a User aka "Who made this comment"
 post_id #foreign key; a comment belongs to a Post aka "What post this comment is for"

和中的协会的:

User
 has_many :posts
 has_many :comments

Post
 belongs_to :user
 has_many :comments

Comment
 belongs_to :user
 belongs_to :post

这是正确的做法?

推荐答案

是的,这是正确的做法。

Yes that is the correct approach.

这篇关于Rails的belongs_to的很多车型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆