加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – Rails回形针不显示来自Amazon S3的上传图像

发布时间:2020-12-17 01:35:26 所属栏目:百科 来源:网络整理
导读:我将图像上传到Amazon S3,但它们没有显示. 我收到此错误: ErrorCodePermanentRedirect/CodeMessageThe bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint./MessageB
我将图像上传到Amazon S3,但它们没有显示.

我收到此错误:

<Error>
<Code>PermanentRedirect</Code>
<Message>
The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.
</Message>
<Bucket>cb123</Bucket>
<Endpoint>cb123.s3.amazonaws.com</Endpoint>
<RequestId>870BC2E8570EF4E7</RequestId>
<HostId>
yuBkeXxftr7O9Ib0SasFTq8Hlvgc7hkhx9VMr+VwRL74qSDgJ9rqMgEU9noRIQe/
</HostId>
</Error>

这是我的设置:

has_attached_file :image,styles: { medium: "400x400#",small: "250x250#",:url =>':s3_domain_url',:path => '/:class/:attachment/:id_partition/:style/:filename' }

谢谢!

解决方法

将其添加到application.rb或每个环境的配置文件中:

config.paperclip_defaults = {
  :storage => :s3,:s3_host_name => 's3-eu-central-1.amazonaws.com',:s3_credentials => {
    :bucket => 'your bucket',:access_key_id => 'your access-key-id',:secret_access_key => 'your secret-access-key'
  },:path => '/:class/:attachment/:id_partition/:style/:filename'
}

然后,您可以从模型中删除:url和:path config.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读