我的回形针配置是:
has_mongoid_attached_file :avatar,
:path => "/nas/avatars/:id/:style/:id.:extension",
:url => "/system/:id/:style/:id.:extension",
:styles => { :profile => "100x100", :thumb => "64x64" }
我尝试通过以下方式显示:
image_tag @profile.avatar.url(:profile)
但它返回/system/54995fec7061762375100000/profile/54995fec7061762375100000.jpg 404未找到
是否可以将文件物理保存在应用程序文件夹(挂载的NAS)之外?
答案 0 :(得分:1)
确实如此,但您需要以某种方式提供此文件,因为它们不在public
目录中。一种方法(我使用)是为它创建一个单独的控制器。类似的东西:
def show
send_file @profile.avatar.path(:profile), type: 'image/jpeg', disposition: 'inline'
end
您也可以尝试使用符号链接,但我不知道它是如何工作的。