创建一个帖子和破碎的图像出现(使用回形针)

时间:2017-03-13 08:42:44

标签: ruby-on-rails image paperclip

我已经安装了imagemagick,paperclip,没有迁移的问题和其他..但它显示我的图像被打破名为Missing,也尝试通过在youtube和其他论坛上复制教程进行故障排除,但仍然,相同问题出现..只有一个图像损坏的帖子。

这是我得到的输出:

enter image description here

1 个答案:

答案 0 :(得分:0)

Nahhh问题出在post.rb(模型)中..我改变了这个:

has_attached_file :image, styles: { medium: "300x300>", thumb: "100x100>" }

到此:

has_attached_file :image

我不知道为什么风格是问题..我认为它会调整上传的图像..图像出现,但大小是随机的..所以我把它放在视图:

<%= image_tag @post.image.url,size:"400x400" %>

问题解决了