mongoid找到VS在哪里

时间:2011-04-20 04:23:28

标签: find criteria mongoid where

当我按ID搜索

时,我似乎只对1个特定型号出现此问题
>> Cart.where(:_id => '4dae5902e1607c232c000009').first
=> #<Cart _id: 4dae5902e1607c232c000009, _id: BSON::ObjectId('4dae5902e1607c232c000009'), _type: nil>
>> Cart.find('4dae5902e1607c232c000009')
Mongoid::Errors::DocumentNotFound: Document not found for class Cart with id(s) 4dae5902e1607c232c000009.
奇怪的是,与其他型号一样,我可以使用find就好了。任何想法?

堆栈的其余部分是......

from /Library/Ruby/Gems/1.8/gems/mongoid-2.0.1/lib/mongoid/criterion/inclusion.rb:192:in `execute_or_raise'
from /Library/Ruby/Gems/1.8/gems/mongoid-2.0.1/lib/mongoid/criterion/inclusion.rb:190:in `tap'
from /Library/Ruby/Gems/1.8/gems/mongoid-2.0.1/lib/mongoid/criterion/inclusion.rb:190:in `execute_or_raise'
from /Library/Ruby/Gems/1.8/gems/mongoid-2.0.1/lib/mongoid/criterion/inclusion.rb:106:in `find'
from /Library/Ruby/Gems/1.8/gems/mongoid-2.0.1/lib/mongoid/finders.rb:67:in `find'
from (irb):37

1 个答案:

答案 0 :(得分:3)

通常问题是相反的。随着失败和发现工作。

这是因为在查询之前没有将id转换为BSON :: ObjectId。

通常你必须这样做

Cart.where(:_id => BSON::ObjectId('4dae5902e1607c232c000009')).first

这让我相信你的id存储为字符串而不是BSON:ObjectId并且会解释为什么find失败(它正在搜索BSON :: ObjectId而不是字符串)

还可以解释为什么它只是一个模型,因为它完全取决于对象的存储方式。

希望有所帮助