• help()
    • 名称
    • 语法
    • 类别
    • 描述
    • 参数
    • 返回值
    • 错误
    • 版本
    • 示例

    help()

    名称

    help - 显示帮助信息。

    语法

    help()

    help(<method>)

    类别

    Global

    描述

    在全局范围内显示帮助信息:

    • help() - 显示全局的帮助信息。

    • help() - 显示具体方法的详细文档信息。另外,也可以在类和对象范围查看帮助信息:

    • .help() - 显示该类或对象包含的所有方法。

    • .help() - 显示类或对象具体方法的详细文档信息。

    参数

    • class ( Object必填 )

    javascript 类或者对象。

    • method ( String必填 )

    类或者对象的方法名。

    返回值

    帮助信息。

    错误

    无。

    版本

    v1.0及以上版本。

    示例

    • 显示全局帮助信息。
    1. > help()
    • 显示类包含的的所有方法。
    1. > Oma.help()
    2. --Constructor methods for class "Oma":
    3. var oma = new Oma([hostname],[svcname])
    4. - Class for cluster management.
    5. --Static methods for class "Oma":
    6. Oma.addAOmaSvcName(<hostname>,<svcname>,[isReplace],[confFile])
    7. - Specify the service name of sdbcm in target
    8. host.
    9. Oma.delAOmaSvcName(hostname,[confFile])
    10. - Delete the service name of sdbcm from its
    11. configuration file in target host.
    12. Oma.getAOmaSvcName(hostname,[confFile])
    13. - Get the service name of sdbcm in target host.
    14. ...
    • 显示对象包含的所有方法。
    1. > var oma = new Oma()
    2. > oma.help()
    3. --Instance methods for class "Oma":
    4. close() - Close the Oma object.
    5. createCoord(<svcname>,<dbpath>,[config])
    6. - Create a coord node in target host of sdbcm.
    7. createData(<svcname>,<dbpath>,[config])
    8. - Create a standalone node in target host of
    9. sdbcm.
    10. ...
    • 查看具体方法的详细帮助文档。
    1. > help("createCS")
    2.  
    3. createCS(1) Version 2.8 createCS(1)
    4.  
    5. NAME
    6. createCS - Create a collection space in current database.
    7.  
    8. SYNOPSIS
    9. db.createCS(<name>,[options])
    10.  
    11. CATEGORY
    12. Sequoiadb
    13.  
    14. DESCRIPTION
    15. Create a collection space in a database instance.
    16.  
    17. name (string)
    18. Collection space name. Collection space name should be
    19. unique to each other in a database instance.
    20. ...
    • 查询具体类或者对象具体方法的详细帮助文档。
    1. > var db = new Sdb()
    2. > db.foo.help("createCL") // 或者 SdbCS.help("createCL")
    3.  
    4. createCL(1) Version 2.8 createCL(1)
    5.  
    6. NAME
    7. createCL - create a new collection.
    8.  
    9. SYNOPSIS
    10. db.collectionspace.createCL(<name>,[option])
    11.  
    12. CATEGORY
    13. Collection Space
    14.  
    15. DESCRIPTION
    16. Create a collection in a specified collection space. Collection is a
    17. logical object which stores records. Each record should belong to one
    18. and only one collection.
    19.  
    20. PARAMETERS
    21. * name ( String , Required )
    22.  
    23. The name of the collection, should be unique to each other in a
    24. collection space.
    25.  
    26. ...