:gallery有一个字段,:Title,这是必需的.
当我提交没有标题时,其他字段仍然存在(:description,:location),但嵌套资源变为空白.
有没有办法在验证之前构建资源,以便在验证失败后它仍然存在?
f.inputs "Images" do f.has_many :images do |i| i.input :image,:as=>:file,:multipart => true,:label => "Image" end end解决方法 请检查您是否在gallery模型中添加了这些必需的内容
attr_accessible :images_attributes
和
accepts_nested_attributes_for :images,:allow_destroy => :true总结
以上是内存溢出为你收集整理的ruby-on-rails – 活动管理员before_validation挂钩?全部内容,希望文章能够帮你解决ruby-on-rails – 活动管理员before_validation挂钩?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)