我正在尝试通过回形针附加图像。但不工作。默认图像显示正常。但我无法使用浏览选项上传图片。这是我得到的错误。
“1 个错误禁止保存此列表:图片的扩展名与其内容不匹配”
我也在模型中添加了验证。这是模型中的 mylistings.rb。
class Listing < ActiveRecord::Base
has_attached_file :image, :styles => { :medium => "200x", :thumb => "100x100>" }, :default_url => "default.jpg"
validates_attachment :image, content_type: { content_type: /\Aimage\/.*\Z/ }
end