我正在使用carrierwave,我想更改存储图像的目录。
现在图像 URL 是 /uploads/modelname/image/51/nameofile.jpg
ImageUploader 中的 store_dir 是
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
我绝对不希望显示模型名称是否有一个公认的理想路径,图像应该存储在 heroku 上?