在 mongo ruby driver 中使用 DBRef:(#<Mongo::D BRef:0x0056466ed55e48> 的未定义方法 'bson_type' )



当我试图在mongo ruby驱动程序中使用DBRef时(创建一个新的DBRef对象并将其包含在我插入集合的文档中),我会遇到这个错误,我无法理解:

NoMethodError (undefined method `bson_type' for #<Mongo::DBRef:0x0056466ed55e48>):
  app/controllers/payment_notifications_controller.rb:43:in `block in create'
  app/controllers/payment_notifications_controller.rb:19:in `create'

这是有问题的代码:

user_mongo = Urgent::Application.config.mongo_client[:user].find(uuid: order.identity.uuid)
if user_mongo
  grant_document = { :target => Mongo::DBRef.new("user", user_mongo.first["_id"]), :role => order_item.expirable.backend_id, :created => Time.now, :store_item_id => order_item.id, :store_order_id => order.id }
  if expires
    grant_document[:expires] = expires
  end
  Urgent::Application.config.mongo_client[:grant].insert_one(grant_document)
end

第39行是指代码段中倒数第二行。

Ruby Mongo驱动程序(我使用的是v2.2.0)没有在Mongo::DBRef类上定义bson_type方法。通过将DB引用指定为扩展JSON(链接),我能够绕过这个特定的限制。将您的grant_document哈希定义为:
grant_document = { :target => { "$ref" => "user", "$id" => user_mongo.first["_id"] }, :role => ... }

相关内容

  • 没有找到相关文章

最新更新