什么是 gem 支持上传文件到 mongomapper
我正在使用 mongo_mapper。我不知道gem支持上传文件是什么?我在谷歌上进行了研究,我看到'carrierwave' gem 支持这个,我用 mongoid 运行 googd,但 mongo_mapper 出错:错误
消息:“未定义的方法 'mount_uploader'”
谢谢大家
I'm using mongo_mapper. I don't know what is gem support upload file? I've research on google, I see 'carrierwave' gem support this and i run googd with mongoid, but error with mongo_mapper:
errrors message: "undefined method 'mount_uploader' "
Thanks all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以看看 mm-attach-it,它是 Adilson Chacon Cavalcanti 最近创建的。它支持调整图像大小并将文件存储在 GridFS 中。
您还可以看看 dragonfly ,它更加成熟,这是一篇关于 Dragonfly+MongoMapper 的博客文章(有点旧)和官方 Mongo+Dragonfly 文档。
You might take a look at mm-attach-it, just recently created by Adilson Chacon Cavalcanti. It supports image resizing and storing the files in GridFS.
You can also take a look at dragonfly which is much more mature, here's a blog post on Dragonfly+MongoMapper (a bit old) and the official Mongo+Dragonfly docs.
构建了一个 Ruby 2、Rails 4、Dragonfly 和 MongoMapper 的简单示例,可在 Github 上获取
我用很短的时间 ,我将图像文件存储到 MongoDB 的 GridFS 系统中。
I built a simple example of Ruby 2, Rails 4, Dragonfly and MongoMapper, available on Github
In very little time, I had image files being stored into MongoDB's GridFS system.