我正在使用 Carrierwave 添加图像并将其上传到 Amazon S3。这工作正常,一旦表单被保存,我会显示图像和一个 x 框来删除它。
我想使用 ajax 在单击时处理“x”图像上的单击事件我想删除图像并清除表单上的字段,以便再次显示输入字段
图像字段是我在表单中编辑的模型类的一个属性。
Person < ActiveRecord
attr_accessible: image
我的表单这部分的部分显示图像(如果存在),否则显示输入 file_field(如果不存在)
<div class="field">
<%= image_tag @pass.background_image_url(:thumb) if @pass.background_image? %>
<%= f.file_field :background_image if @pass.background_image.to_s == '' %>
<%= content_tag :div, '', class: "delete_image_fields" if @pass.background_image? %>
</div>
我有一些 jquery,我可以成功隐藏图像字段。
jQuery ->
$('.field .delete_image_fields').click ->
$(this).parent().find('img').hide()
event.preventDefault()
图像字段被隐藏没问题
我想要发生的是
a) 从 pass 对象中清除输入字段 b) 提交更改(远程) c) 删除 S3 上的远程图像 e) 重新显示图像的 file_input 字段,以便在需要时重新选择它
任何帮助或指示将不胜感激
更新
我已经部分工作以显示正确字段并调整输入链接。但我不确定如何从模型属性中实际删除文件
我已将部分更新为以下内容,其中显示图像或创建文件按钮
<div class="field">
<%= f.label :background_image %><br />
<% if @pass.background_image?%>
<%= image_tag @pass.background_image_url(:thumb) %>
<%= f.file_field :background_image , style: "display:none"%>
<%= content_tag :div, '', class: "delete_image_fields" %>
<% else %>
<%= f.file_field :background_image%>
<% end %>
并将我的 jquery 更新为此
$('.field .delete_image_fields').click ->
$(this).parent().find('img').hide()
$(this).hide()
$(this).parent().find('input').val('')
$(this).parent().find('input').show()
event.preventDefault()