嵌套属性未保存在 Rails 的表单内

发布于 2024-12-10 00:36:53 字数 453 浏览 0 评论 0原文

我有 Tours,它有很多照片...照片属于 Tours...这一切都很顺利,但是当我尝试编辑上传照片的属性时,它不会保存在数据库中...(我导入了一些数据,这保存得很好,但它不会保存任何更改)

我有一个带有nested_attributes的表单

= semantic_form_for ([:admin, @tour]), :html => {:multipart => true} do |f|
... 
 - @tour.photos.each do |photo|
 ...
 = f.semantic_fields_for photo do |p|
    ...  
    = p.inputs :alt, :description, :temp_src, :remote_image_url

字段正确填充,但是当我保存表单时..它们不会更新...

有任何线索吗?

I have Tours, which has_many Photos... Photos belong_to Tours... This is all going okay, but when I try to edit the attributes of an uploaded photo, it will not save in the database... ( I have imported some data, and this saves fine, but it just won't save any changes)

I have a form with nested_attributes

= semantic_form_for ([:admin, @tour]), :html => {:multipart => true} do |f|
... 
 - @tour.photos.each do |photo|
 ...
 = f.semantic_fields_for photo do |p|
    ...  
    = p.inputs :alt, :description, :temp_src, :remote_image_url

The fields populate correctly, but when I save the form.. they do not update...

Any clues?

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

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

发布评论

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

评论(1

白色秋天 2024-12-17 00:36:53

Tour 模型只需要 attr_accessible :photo_attributes

The Tour model simply needed attr_accessible :photo_attributes

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