该网站的功能是发布博客帖子.它在
Windows 7上本地运行.我尝试过Paperclip gem(版本4.2.4和4.3),服务器进入cmd的无限循环(4.2.4上没有发生但仍然出错).我做了捆绑安装,它肯定是安装的.
的Gemfile:
gem "paperclip","~> 4.3"
这是模型:
class Post < ActiveRecord::Base has_attached_file :image,:default_url => ":style/rails1.jpg" validates_attachment_content_type :image,:content_type => /\Aimage\/.*\Z/ end
这是我在尝试提交图像(png或jpg)时遇到的错误:
Image has contents that are not what they are reported to be
我是新手,所以详细的解释将不胜感激.我在这里阅读了一些其他修复但没有任何效果.