在 ruby​​ on Rails3 中显示目录中的图像

发布于 2024-12-23 13:56:37 字数 541 浏览 1 评论 0原文

我正在 ruby​​ on Rails 3 中开发简单的 Web 应用程序,用户可以在其中上传图像,并且上传的所有图像都必须显示。 我成功地将图像上传到位于公共文件夹(照片)中,并将其 url 路径存储在数据库中。我在显示图像时遇到问题。

image.html.erb

<% @photo.each do |photo| %>
  <table>
    <tr> 
      <td><img src = "#{photo.url}" /></td>
    </tr>
  </table>
<%end%>

在照片控制器

def image
  @photo = Photo.all
end

,当我给出路径(photos/pic1.jpg)时,循环一直在工作,但如果我使用照片,它只显示一张图像。 url 一直没有显示任何图像。

I am developing simple web application in ruby on rails 3, where users can upload images and uploaded all images has to be displayed.
Successfully i uploaded images into folder(photos) which is located in public and stored their url path in database.I am getting problem in displaying images.

image.html.erb

<% @photo.each do |photo| %>
  <table>
    <tr> 
      <td><img src = "#{photo.url}" /></td>
    </tr>
  </table>
<%end%>

in photos controller

def image
  @photo = Photo.all
end

when iam giving path(photos/pic1.jpg) the loop has been working but it displaying only one image, if iam using photo.url it has been not displaying any image.

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

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

发布评论

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

评论(1

孤芳又自赏 2024-12-30 13:56:37

要将某些变量值渲染到 erb 模板中,您应该使用 <%= ... %> 而不是常规字符串插值 #{...}。根据您的情况,您可以这样做:

<img src = "<%= photo.url %>" />

或者,更好的是,您可以使用 image_tag 助手:

<%= image_tag photo.url %>

To render some variable value into erb template you should use <%= ... %> instead of regular string interpolation #{...}. In your case you can do:

<img src = "<%= photo.url %>" />

Or, better, you can use image_tag helper:

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