在没有 ActiveRecord 的情况下将图像上传到 S3
我正在尝试将文件上传到S3,其中rails项目不使用ActiveRecord,而是使用MongoMapper。有没有什么宝石可以帮助我完成这项任务?我尝试过毫米载波(我尝试改编 RailsCasts 中的 Ryane Bate 示例),但没有成功。没有适用于毫米载波的文档,我无法设置初始化程序。还有其他方法可以将文件上传到S3吗?
I'm trying to upload files to S3 where the rails project does not use the ActiveRecord it uses the MongoMapper. Is there any gem which could help me to do this task? I have tried the mm-carrierwave (I have tryied to adapt the Ryane Bate example in RailsCasts) but unsucessfully. No documentation is available for mm-carrierwave and I was unable to set up the initializer. Is there any other way how to upload the files to S3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您研究过 Paperclip 吗?它允许您的存储位置位于 S3 上,并借助 gem 'aws-sdk' 的帮助。
这是一个教程: Paperclip 和 MongoMapper
Have you looked into Paperclip? It allows for your storage location to be on S3 with some help from the gem 'aws-sdk'.
Here is a tutorial: Paperclip and MongoMapper