【发布时间】:2015-01-08 01:40:26
【问题描述】:
我的回形针配置是:
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 Not found
是否可以将文件物理保存在应用程序文件夹之外(挂载的 NAS)?
【问题讨论】: