16

我使用 Paperclip 和 S3 创建了一个在 Heroku 上运行的 Rails 应用程序。我已经设法通过该站点将图像上传到我的 S3 存储桶(我可以在亚马逊控制面板的存储桶中看到它们出现)。

但是当我添加一个图像标记即 <%= image_tag x.photo.url %> 时,我得到以下 html(这里省略了标记),没有显示图像!

img alt="Test_tree" src="http://s3.amazonaws.com/hiphotos/ads/photos/000/000/015/original/test_tree.jpg?1344661020"

请帮忙!为什么我看不到图像,即使它们在存储桶中?

非常感谢你们

4

2 回答 2

18

创建一个名为回形针初始化程序的文件:

# config/initializers/paperclip.rb 
# We are actually setting this to 's3_domain_url', 
# so it's not a placeholder for something else. 
Paperclip::Attachment.default_options[:url] = ':s3_domain_url'
Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename'

或者你也可以把它放在里面production.rb

config.paperclip_defaults = {
    :storage => :s3,
    :s3_credentials => {
        :bucket => ENV['S3_BUCKET_NAME'],
        :access_key_id => ENV['AWS_ACCESS_KEY_ID'],
        :secret_access_key => ENV['AWS_SECRET_ACCESS_KEY']
    },
    :url =>':s3_domain_url',
    :path => '/:class/:attachment/:id_partition/:style/:filename',
}
于 2013-09-30T18:53:29.757 回答
12

首先,您尝试在代码中使用的 url 是这样的:

http://s3.amazonaws.com/hiphotos/ads/photos/000/000/015/original/test_tree.jpg

当您在浏览器中访问该链接时,您会看到以下内容:

<message>
  The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.
</Message>
<RequestId>810A6AE1D141304C</RequestId>
<Bucket>hiphotos</Bucket>
<HostId>
  XXZ+s+slgZLsRWy5NiU/G0yAKBLftw0oT2dDKpas532qXJEPSrISVPqfZsEgpb2J
</HostId>
<Endpoint>hiphotos.s3.amazonaws.com</Endpoint>

因此,如果我们使用正确的端点修改 url,我们会得到:

http://hiphotos.s3.amazonaws.com/ads/photos/000/000/015/original/test_tree.jpg

哪个确实返回正确的图像。

如果您使用的是欧洲存储桶,则可能会发生这种情况,这可能是您用来将内容推送到 s3 的 gem 的错误。

有很多文章介绍了如何让 Paperclip、S3 和欧洲水桶很好地协同工作。

不过我发现,自从我开始使用使用 Fog 而不是 aws-s3 gem 的asset_sync gem 以来,我对回形针和 S3 不再有任何麻烦。

所以我怀疑雾与让这个问题对我消失有关。如果您正在使用其他东西,我建议您切换到它。

于 2012-08-11T06:38:25.313 回答