• listDomains()
    • 语法
    • 参数描述
    • 返回值
    • 错误
    • 示例

    listDomains()

    语法

    db.listDomains( [cond], [sel], [sort] )

    枚举系统中所有由用户创建的域。

    参数描述

    参数名参数类型描述是否必填
    condJson 对象匹配条件,只返回符合 cond 的记录,为 null 时,返回所有。
    selJson 对象选择返回的字段名。为 null 时,返回所有的字段名。
    sortJson 对象对返回的记录按选定的字段排序。1为升序;-1为降序。

    返回值

    返回游标对象,出错抛异常,并输出错误信息,可以通过getLastErrMsg()获取错误信息或通过getLastError()获取错误码。关于错误处理可以参考常见错误处理指南。

    错误

    常见错误可参考错误码。

    示例

    • 列出系统中所有由用户创建的域
    1. > db.listDomains()
    2. {
    3. "_id": {
    4. "$oid": "5811641e3426f0835eef45bf"
    5. },
    6. "Name": "mydomain",
    7. "Groups": [
    8. {
    9. "GroupName": "group1",
    10. "GroupID": 1001
    11. },
    12. {
    13. "GroupName": "group2",
    14. "GroupID": 1002
    15. },
    16. {
    17. "GroupName": "group3",
    18. "GroupID": 1000
    19. }
    20. ]
    21. }