如何使用资产管道在元素div中添加style =" background-image?

时间:2016-04-03 20:29:17

标签: ruby-on-rails

torch.setdefaulttensortype('torch.FloatTensor') 文件夹中,我存储了图片assets/images/default/user

如何直接在以下banner.png中添加此图片?

background-image

1 个答案:

答案 0 :(得分:7)

Rails资产:Rails Assets Doc.

asset-url("rails.png") becomes url(/assets/rails.png)
asset-path("rails.png") becomes "/assets/rails.png"

在你的情况下应该是这样的:

url(<%= asset_path 'banner.png' %>)