gpt4 book ai didi

ruby-on-rails - 回形针 422 错误

转载 作者:行者123 更新时间:2023-12-03 17:53:23 24 4
gpt4 key购买 nike

我在使用回形针时遇到了一些问题。当我在大小(缩放和裁剪)后面有一个“#”时,我会收到 422 错误。我的日志是这样写的:

Command :: convert '/tmp/**** (20130110)20130311-13571-xxasmt.png[0]' -auto-orient -resize "150x150#" '/tmp/**** (20130110)20130311-13571-xxasmt20130311-13571-1anrx0y'
[paperclip] An error was received while processing: #<Paperclip::Error: There was an error processing the thumbnail for **** (20130110)20130311-13571-xxasmt>
Completed 422 Unprocessable Entity in 2785ms (Views: 0.8ms | ActiveRecord: 9.1ms)

这是我在模型中的回形针代码:
  has_attached_file :image,
:styles => {
:medium => "300x300#",
:thumb => "100x100>",
:standard => "150x150>"
},
:storage => :s3,
:s3_credentials => "#{Rails.root}/config/s3.yml",
:bucket => "convertkit",
:s3_protocol => "https"

我错过了什么吗?

最佳答案

has_attached_file :avatar,
:styles => {
:thumb => "60x60>", :medium => "120x120>",
:original => "100%", small2: "65x65>", medium2: "144x144>"
},
:storage => :s3,
:s3_credentials => "#{::Rails.root.to_s}/config/aws.yml",
:s3_permissions => "public-read",
:url => ':s3_alias_url',
:path => "/slider/:attachment/:id_partition/:style/:filename",
:s3_host_alias => Settings.cloud_front_url,
:s3_protocol => :https,
:s3_headers => {'Expires' => (Time.now + 6060243012).httpdate},
default_url: "paperclip_default/slider/:style_missing.png"

关于ruby-on-rails - 回形针 422 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15349475/

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