gpt4 book ai didi

ruby - 将字符串 ID 与 BSON::ObjectId 进行比较

转载 作者:IT老高 更新时间:2023-10-28 13:31:23 29 4
gpt4 key购买 nike

我有一个由 BSON::ObjectId 类型组成的数组,我希望它与一些 ID 作为字符串进行比较。

if my_array_of_BSON_ObjectIds.include?(@my_id_as_a_string)
# delete the item from the array
else
# add the item to the array as a BSON::ObjectId
end

这不起作用,因为类型不同,我可以将我的字符串变成 BSON::ObjectId 吗?如果有,怎么做?

最佳答案

带有 10gen 驱动程序的 Mongoid 2.x:

BSON::ObjectId.new('506144650ed4c08d84000001')

带轻便摩托车的 Mongoid 3:

Moped::BSON::ObjectId.from_string('506144650ed4c08d84000001')

Mongoid 4(轻便摩托车)/Mongoid 5/6/7(mongo):

BSON::ObjectId.from_string('506144650ed4c08d84000001')

关于ruby - 将字符串 ID 与 BSON::ObjectId 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12578828/

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