这是我的上传.rb
class Upload < ActiveRecord::Base
belongs_to :post
has_attached_file :upload,styles: { medium: ["500x400>",:jpg], thumb: ["100x100>",:jpg]},url: "/post_images/post_:postid/:style/:filename"
def postid
self.post_id
end
end
我有一个带有 post_id 的列。正如所belongs_to
代表的那样,我将为一篇文章提供不止一张图片。但是在将文件保存在文件夹而不是post_25
. 它存储为post_:postid
但是,如果我按照:id
它的工作方式给予。
我该如何解决。有人能帮忙吗。