具有多态 has_many 模型的嵌套属性
我试图找出创建像“文章”这样的模型和另一个称为“评论”的多态模型的模型的最佳方法是什么。我想这样做的原因是这样我就没有重复的模型可供评论。所以此时我已经启动并运行了多态模型并使用文章模型。问题是我希望一切都采用一种形式。编辑文章和发表评论的能力。任何建议都会帮助我解决这个困境。
I am trying to figure out what is the best way to go about creating a model like "Article" and another model that is a polymorphic model called "comment". The reason I want to do this is so I don't have duplicate models for comments. So at this point I have the polymorphic model up and running and working with the article model. The problem is I want everything to be on one form. The Ability to edit the article and post a comment. Any suggestions would help me out with this dilemma.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以使用 form_tag 来实现,
然后参数将很好地分组在一个散列中
,您可以解析该散列以更新两个模型。
This can be achieved using form_tag
the params will then nicely be grouped in a hash like
which you can parse to update both the models.