导轨 - 回形针和导轨Acts_As_Versioned - 访问照片 URL
我已经实现了以下内容:
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论