Rails image broken link

前端 未结 2 1738
不知归路
不知归路 2021-01-23 20:36

I\'m trying to link to an image in rails and its not working. I can link to assets/file.css as well as assets/file.js but assets/file.jpg doesnt work.

I tried a fresh ra

2条回答
  •  说谎
    说谎 (楼主)
    2021-01-23 20:52

    Ok so that's an expected behavior, you have to use Rails helpers:

     <%= image_tag "file.jpg" %>
    

    Your css files should be .erb. Within it, use:

    .class { background-image: url(<%= asset_path 'image.png' %>) }
    

    Reference is para 2.2.1 here.

提交回复
热议问题