我是 Rails 的新手,请指导我。
我想验证"file_field"图像上传。只需上传JPG/PNG/GIF和特定尺寸,如最大尺寸(500x500)
这是我的_form.html.erb
<%= form_for(@photo, :html => {:multipart => true} ) do |f| %>
<% if @photo.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@photo.errors.count, "error") %> prohibited this photo from being saved:</h2>
<ul>
<% @photo.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %><br />
<%= f.text_field :title %>
</div>
<div class="field">
<%= f.label :description %><br />
<%= f.text_area :description, :size => '115x20' %>
</div>
<div class="field">
<label for="image_file">File</label><br />
<%= file_field 'upload', 'datafile'%>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
我试图像这样进行验证
class Photo < ActiveRecord::Base
validates_presence_of :title, :description, :upload
validates_uniqueness_of :title
validates_format_of :upload, :allow_blank => false,
:with => %r{.(gif|jpg|png)$}i,
:message => 'must be a URL for GIF, JPG ' +
'or PNG image.'
end
错误是这样的
undefined method `upload' for #<Photo:0xad6b294>
我错过了什么吗?
如果您正在使用任何照片上传插件,您会发现使用它验证方法
例如,使用Papaerclip。
你会发现validates_attachment_size :upload, :less_than => 2.megabytes
并更改您的代码
<%= file_field 'upload', 'datafile'%> to <%= f.file_field :upload, 'datafile'%>