我有一个由类型组成的数组,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
吗?如果是这样,怎么做?