我应该为相同类型的关系创建不同的联接表吗?

发布于 2024-09-30 11:32:05 字数 454 浏览 4 评论 0原文

我有可以由多态协会投票的帖子。现在我也发表评论。我可以为我的评论分享相同的模型和逻辑吗?或者我必须建立一种新的关系模式吗?

#post.rb
has_many                      :votes, :as => :votable                          
has_many                      :voting_users,                                   
                              :through => :votes,                              
                              :source => :user 
#vote.rb
belongs_to :votable, :polymorphic => true

I have posts that can be voted on by a polymorphic association. Now I am making comments votable as well. Can I share the same models and logic for this for my comments? Or do I have to make a new model relationship ?

#post.rb
has_many                      :votes, :as => :votable                          
has_many                      :voting_users,                                   
                              :through => :votes,                              
                              :source => :user 
#vote.rb
belongs_to :votable, :polymorphic => true

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奶气 2024-10-07 11:32:05

是的,您应该能够从帖子模型中复制两个 has_many 关系并将它们放入 comment.rb 中,不会出现任何问题。由于您的投票模型是多态的,因此只要 votes 表中有 votable_id:integervotable_type:string ,一切都应该正常工作。

Yes, you should be able to copy the two has_many relationships from your post model and drop them in comment.rb without a problem. Since your vote model is polymorphic, as long as you have votable_id:integer and votable_type:string in the votes table, everything should work normally.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文