これは私のupload.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
に、1 つの投稿に対して複数の画像が表示されます。ただし、ファイルをpost_25
. として保存しています。post_:postid
しかし、それが機能しているので与えると:id
。
どうすれば解決できますか。誰でもこれを手伝ってもらえますか。