Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

ruby on rails - Is there a best directory to place image uploads on heroku?

I'm using carrierwave and I want to change the directory where images are stored.

Right now the image URL is /uploads/modelname/image/51/nameoffile.jpg

the store_dir in ImageUploader is

def store_dir
    "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

I definitely do not want the modelname to show Is there an accepted ideal path where images should be stored on heroku?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Heroku doesn't allow uploads to their servers. You need to use another storage medium, like Amazon's S3.

I'm actually using Parse's (www.parse.com) API to store images on their solution. But it depends how you need access to your images.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...