使用rails 5,图像不会出现在Web浏览器中

时间:2018-01-27 13:51:33

标签: ruby-on-rails

我的应用程序在rails中有问题。我正在rails中创建一个简单的博客。但图像未加载到浏览器上。我已将图像放在app / assets / images上。

screenshot

1 个答案:

答案 0 :(得分:0)

如果您将文件放在资产文件夹中,则应使用pipeline,例如:

<%= image_tag 'profile.png' %>

或者如果你想要的只是没有标签的图像路径:

<%= asset_path 'profile.png' %>

此外,对于使用没有像host/img/profile.png这样的管道的路径,你应该把图像放在: /public/img/profile.png