我想为以下表单创建一个编辑页面。问题是,当用户浏览到编辑页面时,brand_name 和 name 已预先填写,但即使存在“样式”的头像,图像上传字段也会显示“未选择文件”。请让我知道是否有某种方法可以解决此问题。谢谢!
我的编辑表格:
<%= simple_form_for @style, :html => { :class => 'form-horizontal' }, :remote => true do |m| %>
<%= m.input :brand_name, :label => 'Brand', :placeholder => 'Brand' %>
<%= m.input :name, :label => 'Style', :placeholder => 'Style' %>
<%= m.input :avatar, :label => "Image" %>
<div class="form-actions" style = "background:none">
<%= m.submit nil, :class => 'btn btn-primary' %>
<%= link_to 'Cancel', styles_path, :class => 'btn' %>
</div>
<% end %>