导轨 - 回形针和导轨Acts_As_Versioned - 访问照片 URL

发布于 2024-10-01 05:20:15 字数 550 浏览 8 评论 0原文

我已经实现了以下内容:

使用 Paperclip 和 Paperclip 在 Ruby on Rails 中进行文件版本控制。 act_as_versioned: [http://eggsonbread.com/2009/07/23/file-versioning-in-ruby-on-rails-with-paperclip-acts_as_versioned/][1]

当您上传新照片时,它现在已成功版本化。我遇到的问题是我无法用回形针抓取图像:

<% for version in @photos.first.versions.reverse %> 
<%= version.photo.inspect %>
<%= image_tag(version.photo.photo(:thumb)) %>
<% end %>

“version.photo.inspect”显示了正确的信息,当我在图像标签中调用它来显示照片时,它总是显示最多的信息最新版本而不是旧版本。

有想法吗?

I've implemented the following:

File versioning in Ruby on Rails with Paperclip & acts_as_versioned:
[http://eggsonbread.com/2009/07/23/file-versioning-in-ruby-on-rails-with-paperclip-acts_as_versioned/][1]

When you upload a new photo it is now successfully being version. The issue I'm having is that I can't grab the image with paperclip:

<% for version in @photos.first.versions.reverse %> 
<%= version.photo.inspect %>
<%= image_tag(version.photo.photo(:thumb)) %>
<% end %>

Which the "version.photo.inspect" shows the right info, when I call it in the image tag to show the photo, it's always showing the most recent version and not the older version.

Ideas?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文