回形针验证无效

时间:2014-09-21 21:03:01

标签: ruby-on-rails paperclip

我的recipe.rb文件有以下代码:

 class Recipe < ActiveRecord::Base
  belongs_to :user

  has_attached_file :image, styles: {
    thumb: '250x250>',
    img: '1024x768>'
  }
  validates_attachment :image, content_type: { content_type: /\Aimage\/.*\Z/ }
end

每当我使用表单创建新配方并上传图片时,页面只会重新加载并显示我设置的错误。有谁知道发生了什么事?

0 个答案:

没有答案