【发布时间】:2013-08-20 08:26:56
【问题描述】:
我正在尝试将附件添加到我的帖子模型中
我已经用过回形针,但是在这种情况下有一个奇怪的问题,如果我设置:styles,回形针不起作用,
当我试图保存时,它是渲染消息check the problem below,但没有提到任何问题
这个不行
class Post
has_attached_file :photo, :styles => { :medium => "300x300>", :thumb => "100x100>" }
end
这段代码很好用
class Post
has_attached_file :photo
end
【问题讨论】: