Tag: 所属

Rails属于许多模型

我确实发现了一些关于Rails关联的问题,这些问题有点像我的问题,但是对于我来说,我似乎无法理解如何使用belongs_to多个模型。 这是我打算拥有的表格结构 : 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" 和协会 : […]