为什么 Rails 图像显示 ## 对象 id?

发布于 2024-12-11 17:52:37 字数 504 浏览 0 评论 0原文

这是我的观点:

<div>
  <ul>
  <%= @album.photos.each do |photo| %>
   <li><%= link_to(image_tag(photo.soure.url(:small)),photo.source.url(:medium)) %></li>
  <% end %>
 </ul> 
</div>

产生正确的结果,除了所有对象 ID(即 ##)都添加在 之前,并且显示在html中。我猜测,因为每次执行该块时,它都会返回 Photo 对象,这就是它渲染所有 # 的原因,但我不知道如何阻止这种情况发生。

Here is my view:

<div>
  <ul>
  <%= @album.photos.each do |photo| %>
   <li><%= link_to(image_tag(photo.soure.url(:small)),photo.source.url(:medium)) %></li>
  <% end %>
 </ul> 
</div>

produces the right result except all the object ids (i.e. #<Photo:0xXXXXXX>#) get added right before the </ul> and display in the html. I'm guessing since each time the block gets executed it returns the Photo object and that's why its rendering all the #<Photo:0x>s but i don't know how to STOP this from happening.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我老 2024-12-18 17:52:37

这是因为你有:

<%= @album.photos.each do |photo| %>

而不是:

<% @album.photos.each do |photo| %>

It's because you have:

<%= @album.photos.each do |photo| %>

instead of:

<% @album.photos.each do |photo| %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文