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