【发布时间】:2015-04-21 21:09:01
【问题描述】:
我在尝试在表单中使用 cocoon 嵌套文件上传字段时遇到问题。表单正在通过 AJAX 提交,然后使用 update.js.erb partial 重新呈现。
这是我的部分答案,它是编辑表单:
li id="answer_#{answer.id}" class=('accepted' if answer.accepted?)
div.answer-body
span
= answer.body
ul
- answer.attachments.each do |a|
li= link_to a.file.identifier, a.file.url
- if user_signed_in? && current_user.id == answer.user_id
= link_to 'Delete answer', [@question, answer], remote: true, method: :delete
= link_to 'Edit answer', {}, class: "edit-answer", href: '#'
- if user_signed_in? && current_user.id == @question.user_id && !answer.accepted?
= link_to 'Accept answer', accept_question_answer_url(@question, answer),
remote: true, method: :patch, class: 'accept-answer', href: '#'
div.edit-answer-form.conceal
= form_for [@question, answer], remote: true do |f|
= f.label :body, 'Edit answer'
= f.text_area :body
div.form-group
= f.fields_for :attachments do |field|
= render 'attachment_fields', f: field
.links
= link_to_add_association "Moar files!", f, :attachments
= f.submit 'Save', class: 'submit'
= f.button 'Discard', class: 'discard', type: 'button'
提交成功后完全重新渲染。
这是"application/_attachment_fields" 部分:
.nested-fields
.field
= f.label :file
= f.file_field :file
= link_to_remove_association "Remove this attachment", f
Cocoon 使用link_to_add 元素中的属性和新字段的蓝图。当我在没有添加新文件的情况下提交此表单时,一切似乎都很好。链接如下所示:
<a class="add_fields" data-association="attachment" data-associations="attachments" data-association-insertion-template="<div class="nested-fields">
<div class="field">
<label for="answer_attachments_attributes_new_attachments_file">File</label><input type="file" name="answer[attachments_attributes][new_attachments][file]" id="answer_attachments_attributes_new_attachments_file" />
</div>
<input type="hidden" name="answer[attachments_attributes][new_attachments][_destroy]" id="answer_attachments_attributes_new_attachments__destroy" value="false" /><a class="remove_fields dynamic" href="#">Remove this attachment</a>
</div>" href="#">Moar files!</a>
当我将新文件添加到表单并提交时,问题就出现了。蓝图中的引用没有被转义,我最终得到了这个链接:
<a class="add_fields" data-association="attachment" data-associations="attachments" data-association-insertion-template="<div class="nested-fields">
<div class="field">
<label for="answer_attachments_attributes_new_attachments_file">File</label><input type="file" name="answer[attachments_attributes][new_attachments][file]" id="answer_attachments_attributes_new_attachments_file" />
</div>
<input type="hidden" name="answer[attachments_attributes][new_attachments][_destroy]" id="answer_attachments_attributes_new_attachments__destroy" value="false" /><a class="remove_fields dynamic" href="#">Remove this attachment</a>
</div>" href="#">Moar files!</a>
它弄乱了整个表单,并把提交和丢弃按钮推了出去,导致无法提交。
我的update.js.erb 在每次提交表单时都会呈现:
var answer_item = $('#<%= dom_id(@answer) %>');
<% if @answer.errors.any? %>
answer_item.find('.edit-answer-form').prepend("<%= j render 'shared/error_messages', object: @answer %>");
<% else %>
answer_item.replaceWith('<%= j(render @answer) %>');
<% end %>
我确定这不是 cocoon 的问题,因为我之前使用的是 nested_form gem,并且它具有相同概念的类似问题,它在那里被称为蓝图。
我尝试使用raw 方法预先调用j,但问题仍然存在。
我很困惑。
【问题讨论】:
标签: javascript ruby-on-rails ruby ajax cocoon-gem