Rails index.html.erb 不显示 image.png
Rails index.html.erb do not show image.png
我实际上是在使用 <img src="/image.png">
并且这不显示图像。只是#brokenimage。我该如何修复它(图像存储是 /views/projects/)?
使用 rails 资产管道传送图像。
http://guides.rubyonrails.org/asset_pipeline.html
或者您可以将其放在 public 文件夹中。 (public/image.png
)
我实际上是在使用 <img src="/image.png">
并且这不显示图像。只是#brokenimage。我该如何修复它(图像存储是 /views/projects/)?
使用 rails 资产管道传送图像。
http://guides.rubyonrails.org/asset_pipeline.html
或者您可以将其放在 public 文件夹中。 (public/image.png
)