我有一个像这样的简单模型类:
class Task < ActiveRecord::Base
attr_accessible :name, :description, :image
mount_uploader :image, ImageUploader #using CarrierWave for image uploading
validates_presence_of :name, :image
end
像这样的形式:
<%= simple_form_for @task, :html => { :multipart => true } do |f| %>
<%= f.input :name %>
<%= f.input :description %>
<%= f.file_field :image %>
<%= f.button :submit %>
<% end %>
当我在表单上单击提交时,“名称”输入字段旁边会显示一条验证消息“不能为空”,但“图像文件”字段没有显示任何内容。我想显示“需要图像文件”之类的消息;我该怎么做?