开发者

Rails paperclip plugin

开发者 https://www.devze.com 2023-03-03 16:56 出处:网络
I am a newbie. I am trying to upload an image through paperclip. The url and path code is working but the style option is not working. This is my code:

I am a newbie. I am trying to upload an image through paperclip. The url and path code is working but the style option is not working. This is my code:

class User < ActiveRecord::Base
  has_attached_file   :image, :styles => { :small => "150x150>" },
                      :url  => "/assets/users/:id/:style/:basename.:extensio开发者_Go百科n",
                      :path => ":rails_root/public/assets/users/:id/:style/:basename.:extension"
end

When I use the style it doesn't work. If I remove the style option it does work. Please help me out!


Not sure if this will work but try :style_:basename.:extension

0

精彩评论

暂无评论...
验证码 换一张
取 消