我正在尝试复制 Agile Web Development with Rails 4th Edition 中解释的项目。
在逐步完成本书的练习时,我无法在我的网站上看到图像。
在products/index.html.erb
:
<td><%= image_tag(product.image_url, :class => 'list_image') %></td>
在products/show.html.erb
:
<p><b>Image url:</b> <%= @product.image_url %></p>
并在_form.html.erb
:
<div class="field"><%= f.label :image_url %><br /> <%= f.text_field :image_url %></div>
当我检查 html 源代码时,它显示的路径ruby.jpg
为
<img alt="Ruby" class="list_image" src="/images/ruby.jpg" />
该文件位于depot/app/assets/images/ruby.jpg
它只显示路径,而不是图像。我重新启动了服务器并清除了缓存,但仍然没有显示图像。