double Accepts_nested_attributes_for
有谁知道是否可以为其做双重嵌套形式。这样我就可以从文章表单将图像上传到一组。
例如
Article
has_many :image_sets
ImageSet
belongs_to :article
has_many :images
Image
belongs_to :image_set
does anyone know if it is possible to do a double nested form for. so that i could upload images to a set from an article form.
e.g.
Article
has_many :image_sets
ImageSet
belongs_to :article
has_many :images
Image
belongs_to :image_set
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Railscasts #196,看起来他设置了两个嵌套属性的级别,也许你可以做类似的事情。
Check out Railscasts #196, looks like he sets up two levels of nested attributes, maybe you can do something similar to that.