문제

I'm new in Ruby/Rails, so, my question: what is the perfect way to upload file and save filename in database with rails? Are there any Gem? Or maybe there are good build-in feature?

도움이 되었습니까?

해결책

You can try Paperclip.It is most popular gem in rails community...

   https://github.com/thoughtbot/paperclip

these lines do the all stuff

   class User < ActiveRecord::Base
     has_attached_file :avatar, :styles => { :medium => "300x300>", :thumb => "100x100>" }
   end

Try it......

다른 팁

Also try carrierwave, Ryan has a good screencast about this gem

Most people use the Paperclip Gem.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top