作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我以前用过rails-sprockets
2.x 并在电子邮件布局模板中使用以下内容来包含 css
Rails.application.assets.find_asset('file').to_s.html_safe
但是,这不再适用于 rails-sprockets
3.x 建议使用Rails.application.assets_manifest.assets['file.css']
这仅返回文件的字符串名称(如果存在)。我如何获取文件的正文以便我可以在 View 中输出它?
最佳答案
我也遇到了这个问题,虽然我升级到 sprockets 3.x 大约 7 个月。
我尽可能快地把它放在一起(可能有更好的解决方案......) - 这会给你路径名 - 只需使用 File.read()
def find_asset_path(asset_name)
if Rails.application.assets
Rails.application.assets.find_asset(asset_name).pathname
else
name = Rails.application.assets_manifest.assets[asset_name]
File.join(Rails.public_path, 'assets', name)
end
end
关于ruby-on-rails - Rails sprockets 3.0 find_asset,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35154588/
我以前用过rails-sprockets 2.x 并在电子邮件布局模板中使用以下内容来包含 cssRails.application.assets.find_asset('file').to_s.ht
我是一名优秀的程序员,十分优秀!