我一直在使用MongoMapper和Rails 5.2。 创建模型:
class Item
include MongoMapper::Document
key :title, String
key :description, String
end
在MongoDB中,我插入了文档
{
"title": "demo",
"description": "this is the demo item"
}
使用Rails控制台测试此模型
Item.where({:title => "demo"}).first
它显示结果是上面的文件。 但是当我用:
创建一个新文档时item = Item.create({:title => "demo2", :description => "the demo2"})
控制台中的错误
Traceback (most recent call last):
2: from (irb):3
1: from (eval):9:in `title='
NoMethodError (undefined method `[]' for nil:NilClass)
我尝试使用方法new
item = Item.new
控制台显示:
Traceback (most recent call last):
2: from (irb):4
1: from (irb):4:in `new'
NoMethodError (undefined method `keys' for nil:NilClass)
请帮忙!
答案 0 :(得分:0)
Mongomapper与Rails 5.2不兼容