gpt4 book ai didi

ruby-on-rails - 在 index.html.erb View 中显示回形针图像

转载 作者:数据小太阳 更新时间:2023-10-29 08:14:41 24 4
gpt4 key购买 nike

我已成功遵循 Ryan Bates 的回形针教程并使其正常工作。该图像附加到记录并显示在 show.html.erb 上。我想知道如何在索引页面上显示它。以下是我尝试过但没有用的方法。作为引用,表格是“评论”,照片是“照片”。

<table>
<tr>
<th>Photo</th>
<th>Review Title</th>
<th>Content</th>
<th>Name</th>
<th>Job Title</th>
<th>Company</th>
</tr>

<% @reviews.each do |review| %>
<tr>
<td><%=h review.photo.url %></td>
<td><%=h review.review_title %></td>
<td><%=h review.content %></td>
<td><%=h review.name %></td>
<td><%=h review.position %></td>
<td><%=h review.company %></td>
<td><%= link_to 'Show', review %></td>
<td><%= link_to 'Edit', edit_review_path(review) %></td>
<td><%= link_to 'Destroy', review, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>

最佳答案

您需要使用 image_tag 助手:

<td><%= image_tag review.photo.url %></td>

关于ruby-on-rails - 在 index.html.erb View 中显示回形针图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1912435/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com