我有我的文章的編輯窗體。Rails,有沒有辦法給file_field默認的圖像?
每篇文章都有一個圖像。
我有當前圖像和更改圖像部分。
這裏是我的代碼:
<%=form_for @article, url: articles_update_path,remote: true, html: {class: "form-horizontal"} do |f|%>
<fieldset class="content-group">
<legend class="text-bold">Images</legend>
<div class="form-group">
<label class="col-lg-2 text-semibold">Current image:</label>
<div class="col-lg-10">
<%= image_tag @article.image_url(:thumb) unless @article.image.blank?%>
</div>
</div>
<div class="form-group">
<label class="col-lg-2 text-semibold">Change image:</label>
<div class="col-lg-10">
<%= f.file_field :image, :class => 'file-input-custom', 'data-show-caption' => true, 'data-show-upload' => false, :accept => 'image/*'%>
</div>
</div>
</fieldset>
<% end %>
現在的事情是,如果用戶選擇編輯的文章,並不會再次給出一個圖像,沒有圖像。
我想編輯我的編輯表單,以便如果有人不選擇圖像,文章已經存在的圖像被保存。
這可能嗎?
您是否使用了圖片上傳'寶石「carrierwave''? –