我设置了一个带有由 Paperclip 处理story
的附件的模型,如下所示:image
class Story < ActiveRecord::Base
has_attached_file :image # [...]
attr_accessible :user_id, :title, :image, :image_file_name
belongs_to: user
validates_presence_of :user_id
validates :title, :length => { :maximum => 50 }
validates_attachment_size :image, :less_than => 2.megabytes, :unless => Proc.new { |story| story[:image].nil? }
# [...]
end
当我填写我的故事表格时,它看起来像:
<%= form_for @story, html: { multipart: true } do |f| %>
<% if @story.errors.any? %>
<div id="error-explanation">
<ul>
<% @story.errors.full_messages.each do |msg| %>
<li class="error-mess">Error: <%= msg.downcase %></li>
<% end %>
</ul>
</div>
<% end %>
<%= f.text_field :title %></td>
<%= f.file_field :image %>
<%= f.submit t('.send') %>
<% end %>
如果 story.title 太长验证失败,表格会正确重新显示,同时显示正确的错误消息和已填写的无效标题,但file_field
现在为空白,我必须再次单击它才能重新选择文件我要上传。
这是我的stories_controller.rb 的样子:
def create
@story = @current_user.stories.new(params[:story])
if @story.save
redirect_to thanks_path
else
# !@story.save so I render action 'new' again just to
# bang my head against this 'anomaly'
render action: "new"
end
end
如何避免用户在验证错误后重新选择要上传的文件?