Rails image_path/url 辅助方法

Rails image_path/url helper methods

我在app/assets/images/portfolio/01-example.jpg

中有一张图片

我不完全确定如何使用 image_urlimage_path 助手在视图中显示此图像。

<%= image_path('01-example.jpg') %>吗?如果有人能用正确的语法纠正我,我将不胜感激!

是否要在图片标签中显示它,即您的视图 html?

然后是

<%= image_tag('portfolio/01-example.jpg') %>