gpt4 book ai didi

find - mongoid 找到 VS 在哪里

转载 作者:行者123 更新时间:2023-12-04 02:25:27 24 4
gpt4 key购买 nike

当我按 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

最佳答案

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

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

通常你必须这样做

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

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

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

希望有帮助

关于find - mongoid 找到 VS 在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5725469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com