Rails 3.1:确定资产是否存在

有没有一种内置的方式来确定资产是否存在,而不诉诸File.exists?(File.join(Rails.root, "foo", "bar", "baz"))并通过资产path。

我的应用程序从Resque队列中的远程服务器上获取图像; 直到我们下载了图像,我想为占位符图像提供服务。 目前我正在使用File.exists …但是这意味着硬编码一个path,这吸引,或通过configuration的资产path。 这似乎应该在那里,但我不能在文档中find它。

鉴于app/assetshttp://img.dovov.comlolshirts/theme/bg-header.png

 Rails.application.assets.find_asset 'lolshirts/theme/bg-header.png' => #> Sprockets::StaticAsset:0x80c388ec pathname="/Users/joevandyk/projects/tanga/sites/lolshirts/app/assetshttp://img.dovov.comlolshirts/theme/bg-header.png", mtime=2011-10-07 12:34:48 -0700, digest="a63cc84aca38e2172ae25de3d837c71a"> Rails.application.assets.find_asset 'notthere.png' => nil 

由于这仍然是searchGoogle时遇到的最大问题,而且由于接受的答案在生产(至less在某些情况下)中不能正常工作,所以下面是适用于我的解决scheme(Rails 4.2.5.1):

 def asset_exist?(path) if Rails.configuration.assets.compile Rails.application.precompiled_assets.include? path else Rails.application.assets_manifest.assets[path].present? end end 

这是从这个github问题复制

看到这个答案: https : //stackoverflow.com/a/8217598/549252

 = Rails.application.assets.find_asset("my_asset.css").nil? 

请看这里的答案,讨论为什么find_asset可能不总是工作:

只有存在资产时才包含资产