gpt4 book ai didi

ruby-on-rails - 销毁方法不触发以销毁复杂形式的嵌套资源

转载 作者:行者123 更新时间:2023-12-04 03:50:26 26 4
gpt4 key购买 nike

我正在使用 Paperclip 2.3.8 运行 Rails 3.0.3。我有两个模型,分别称为“Post”和“Image”。 Image 是一个包含 Paperclip 图像文件的对象,用于将图像动态添加到帖子中。 Image属于Post,Post有很多Images。

岗位型号:

class Post < ActiveRecord::Base
has_many :images
accepts_nested_attributes_for :images, :reject_if => lambda { |a| a[:image].blank? }, :allow_destroy => true
end

图像模型:
class Image < ActiveRecord::Base
belongs_to :post
has_attached_file :image,
:styles => {
:thumb=> "100x100#",
:small => "300x300>" }
end

我有一个表单,我想在其中动态添加和删除图像。如果图像是正在上传的新图像,我想显示一个 file_field;否则,如果图像已经存在,我想显示图像和删除链接。我在嵌套表单上关注了 Ryan Bates 的 Railscasts。动态添加图像是有效的,但对 _destory 的调用没有触发。该帖子包含“_destroy”=>“1”,但在 HTTP Post 事件之后,id 为 7 的图像仍然存在。以下是 HTTP Post 的摘录:
"images_attributes"=>{
"0"=>{"id"=>"7", "_destroy"=>"1"},
"1"=>{"id"=>"8", "_destroy"=>"false"},
"2"=>{"id"=>"9", "_destroy"=>"false"},
"3"=>{"id"=>"10", "_destroy"=>"false"}}

表格如下所示:
<%= form_for @post, :html => { :multipart => true } do |f| %>
<%= f.label :images, 'Images' %><br />
<div class="field">
<%= f.fields_for :images do |s| %>
<%= render 'image_fields', :f => s %>
<% end%>
</div>
<div class="field">
<%= link_to_add_fields "Add Image", f, :images %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>

_image_fields:
<div class="fields">
<% if !f.object.new_record? %>
<%= image_tag f.object.image.url %>
<% else %>
&nbsp; <%= f.file_field :image%>
<% end %>
<%= link_to_remove_fields "remove", f %>
</div>

Javascript 函数:
function remove_fields(link){
$(link).previous("input[type=hidden]").value = "1";
$(link).up(".fields").hide();
}

function add_fields(link, association, content) {
var new_id = new Date().getTime();
var regexp = new RegExp("new_" + association, "g")
$(link).up().insert({
before: content.replace(regexp, new_id)
});
}

辅助功能:
def link_to_remove_fields(name, f)
f.hidden_field(:_destroy) +
link_to_function(name, "remove_fields(this)")
end

def link_to_add_fields(name, f, association)
new_object = f.object.class.reflect_on_association(association).klass.new
fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
render(association.to_s.singularize + "_fields", :f => builder)
end
link_to_function(name, "add_fields(this, \"#{association}\", \"#{escape_javascript(fields)}\")")
end

正如我上面提到的,我可以添加图像。单击“添加图像”链接向表单添加一个文件字段,我可以成功添加多个图像。单击图像的“删除”链接会从 View 中删除链接和图像 - 但正如我所说,它不会在 Post 事件中删除。

先谢谢你;我感谢任何人花时间帮助我找到解决方案。

编辑:

- 解决方案 -

在 Post Controller 中,将“.includes(:images)”添加到 update 方法中的查找中:
def update
@post = Post.includes(:images).find(params[:id])

respond_to do |format|
if @post.update_attributes(params[:post])
format.html { redirect_to(@post, :notice => 'Post was successfully updated.') }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @post.errors, :status => :unprocessable_entity }
end
end
end

最佳答案

我有一个非常相似的问题。通过删除模型中的 :reject_if 子句,我能够“某种程度上”解决它。

 accepts_nested_attributes_for :images, :allow_destroy => true

一旦我删除它,我就可以毫无问题地删除我的字段。这样做的明显缺点是用户现在可以添加空白/无效图像并且模型不会拒绝它。

编辑:

看起来这实际上是 Rails 3.0.4 中关于 accepts_nested_attributes_for 如何处理 :allow_destroy 和 :reject_if 的错误。请参阅此处的答案以获取另一种解决方法: Paperclip problem for accepts_nested_attributes_for and reject_if

关于ruby-on-rails - 销毁方法不触发以销毁复杂形式的嵌套资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5023786/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com