php小编柚子将为大家介绍如何使用go mongo-driver中的db.getUser()方法。在使用MongoDB数据库时,getUser()方法是一个非常实用的功能,可以用来获取指定用户的详细信息。通过本文的指导,您将学会如何正确使用这个方法,并获得所需的用户信息。阅读本文,让我们一起来探索这个有用的功能吧!
我想使用 go 驱动程序获取数据库的用户详细信息。
例如。在 mongoshell 中
> db.getuser("testuser") null
我如何为此构建 bson.m 或 bson.d ?
我不想传递额外的参数,只是检索数据库的用户信息
var op bson.m command := bson.d{{"getuser", 1}, {"username", "testuser"}} err = clientinfo.database(db).runcommand(context.todo(), cmd).decode(&op)
我尝试了类似上面的方法,但它返回了以下错误:
(CommandNotFound) no such command: 'getUser'
我在这里缺少什么?
database.runcommand()
是为了方便调用mongodb的runcommand()
函数,即运行指定数据库命令.
也就是说,您在 mongo shell 中调用的 getuser()
函数是一个函数,而不是一个命令。
但是有一个 usersinfo
命令可以获取相同的数据。其语法为:
db.runcommand( { usersinfo: <various>, showcredentials: <boolean>, showcustomdata: <boolean>, showprivileges: <boolean>, showauthenticationrestrictions: <boolean>, filter: <document>, comment: <any> } )
这是执行 usersinfo
命令的方法:
var op bson.m cmd := bson.d{{key: "usersinfo", value: bson.m{ "user": "testuser", "db": "admin", }}} err = clientinfo.database(db).runcommand(ctx, cmd).decode(&op)
请注意,usersinfo
文档具有 各种规范,例如:
{ usersinfo: 1 }
返回有关运行该命令的数据库中的用户的信息。
mongosh
为该命令的调用提供 db.getusers()
帮助程序。
{ usersinfo: <username> }
返回有关运行该命令的数据库中存在的特定用户的信息。
mongosh
为该命令的调用提供 db.getuser()
帮助程序。
{ usersinfo: { user: <name>, db: <db> } }
返回有关由名称和数据库指定的用户的信息。
{ usersinfo: [ { user: <name>, db: <db> }, ... ] } { usersinfo: [ <username1>, ... ] }
返回有关指定用户的信息。
{ foralldbs: true }
返回有关所有数据库中用户的信息。
如您所见,getuser()
命令是 { usersinfo: <username> }
命令是 { usersinfo: <username> }
的简写,您可以这样调用:
var op bson.m cmd := bson.d{{key: "usersinfo", value: "testuser"}} err = clientinfo.database(db).runcommand(ctx, cmd).decode(&op)
如果您想要有关多个用户的信息,您当然可以使用数组:
cmd := bson.D{{Key: "usersInfo", Value: []string{"testuser", "anotheruser"}}}
以上是如何使用 go mongo-driver db.getUser()的详细内容。更多信息请关注PHP中文网其他相关文章!