gpt4 book ai didi

ruby-on-rails - 如何在回形针中使用原始图像网址

转载 作者:行者123 更新时间:2023-12-03 16:21:08 27 4
gpt4 key购买 nike

回形针上传的图片的原始路径是什么。

has_attached_file :attachment,
:url => ":rails_root/public/photos/images/:id/:style/:basename.:extension",
:default => ":rails_root/public/images/no-image-available.png",
:styles => style_options,
:default_style => :gallery

和 style_options 是
  style_options = {  :thumbnail => {:geometry => '100x100'},
:profile_gallery => {:geometry => '184x247'}
}

在我的公共(public)文件夹中创建 3 个文件夹,同时上传一张图片 1. 缩略图,2. profile_gallary 3. 原始。

在我的 View 文件中,我调用
<%= photo.thumbnail_url %>

我的问题是我想使用上传图片的原始路径。我不想对任何特定的 url 使用缩略图。如何使用原始路径。

感谢提前

最佳答案

<%= photo.attachment.url(:original) %>

这将为您提供原始文件的路径,如果需要,您还可以获得其他样式:
<%= photo.attachment.url(:thumbnail) %>
<%= photo.attachment.url(:profile_gallery) %>

关于ruby-on-rails - 如何在回形针中使用原始图像网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13911406/

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