在生产中使用资产管道并尝试保持文件夹不那么混乱时,我已经设置了嵌套文件夹.我试图链接到子文件夹中的pdf,但我不确定如何精确调用该文件.
<%= link_to ' | PDF',asset_path(pub.file),:target => "_blank" %>
这在开发中有效.对于生产,我需要调用pubfiles / pub.file,但是这种语法似乎缺少了一些东西.
我发现它应该是这样的:
<%= link_to ' | PDF',asset_path("pubfiles/#{pub.file}"),:target => "_blank" %>
缺少模板people / show,application / show with {:locale => [:en],:formats => [:pdf],: variants => [],:handlers => [:erb,:builder,:raw,:ruby,:jbuilder,:coffee]}.搜索:*“/ rails / neuro / app / views”
def find(*args) find_all(*args).first || raise(MissingTemplate.new(self,*args)) end def find_all(path,prefixes = [],*args)
在没有文件夹参数设置的开发中,pdf打开顺利.