我希望在我的 application.html.erb 文件中放置一个图像,以便它出现在每个页面上。图像在public/legend.jpg
,我的 application.html.erb 中的代码是:
<img src="legend.jpg"/>
此代码在我的根页面中加载图像,但是当我移动到嵌套 url 时,例如:
http://localhost:3000/section/32
我收到以下错误:
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
http://localhost:3000/section/legend.jpg
我已经尝试过使用所有的 Rails 助手之王,但我似乎无法从每个 url 获取图像。感谢所有帮手!
编辑:照片在公共文件夹中时加载,但仅在根 url 中...