Rails 3 Carrierwave-Fog-S3 错误:预期(200) <=>实际(404未找到)
我正在使用 Carrerwave 0.5.3,在图片控制器的 Create 方法中调用 Picture.save 时出现 404 错误。根据 lib/rierwave/storage/s3.rb 中的说明,我的初始化文件 (config/initializers/rierwave_fog.rb) 中有以下内容:
CarrierWave.configure do |config|
config.s3_access_key_id = "xxxxx"
config.s3_secret_access_key = "xxxxx"
config.s3_bucket = "mybucket" #already created in my S3 account
end
在 photo_uploader.rb 中,我有:
class PhotoUploader < CarrierWave::Uploader::Base
include CarrierWave::RMagick
storage :s3
def store_dir
"uploads" # already created in my s3 account
end
def cache_dir
"uploads/cache" #already created in my s3 account
end
end
确切的错误:
Excon::Errors::NotFound in PicturesController#create
Expected(200) <=> Actual(404 Not Found)
request => {:expects=>200}
response => #<Excon::Response:0x00000104a72448 @body="", @headers={}, @status=404>
我在这里发现了一个稍微类似的问题 < a href="https://stackoverflow.com/questions/5481523/rierwave-and-s3-with-heroku-error-undefined-method-fog-credentials">Carrierwave 和 s3 带有 heroku 错误未定义方法 `fog_credentials='< /a> .但按照我现在的方式设置显然在这种情况下有效。不幸的是它不适合我。
我已将一张图片放入我的存储桶中,并将权限设置为公开,并且可以通过浏览器访问该图片。所以 AWS S3 方面的事情似乎正在发挥作用。
不知道下一步该去哪里。有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我睡了一晚,第二天回来,一切都很好。不知道为什么它突然开始工作。
Well, I slept on this for a night came back the next day and all was good. Not sure why it suddenly started working.
确保您的文件名经过清理,并且不包含空格或斜杠等无效字符。
要清理字符串,您可以对其调用
gsub
方法。以下方法调用将清理文件以上传到 S3、Google Cloud Storage 等。Make sure your file names are sanitized and do not contain invalid characters like spaces or slashes.
To sanitize a string you can call the
gsub
method on it. The following method call will sanitize files for upload to S3, Google Cloud Storage etc.