我正在使用回形针做附件: 我正在使用回形针上传xhtml文件,但我想上传zip文件来代替它在目录中有很多文件的位置。 因此,我想在服务器上解压缩该文件,然后将其呈现到浏览器上。
has_attached_file :xhtml_file,
:default_url => "/system/:attachment/missing.png",
:url => "/system/:attachment/:id/:filename",
:path => ":rails_root/public/system/:attachment/:id/:filename",
:dir_path => ":rails_root/public/system/:attachment/:id/:filename"
但是在vie页面中,例如:@ garment.xhtml_file.dir_path其给出错误
undefined method `dir_path' for #<Paperclip::Attachment:0x00005632bc5b2ad0>
如何使用回形针在模型的附件文件中添加:dir_path