获取

描述

integer/array module.get(object parameters)

此方法允许根据给定参数检索模块。

此方法适用于任何类型的用户。可以在用户角色设置中撤销调用该方法的权限。 参阅 用户角色了解更多信息。

参数

(object) 定义期望输出的参数。

此方法支持以下参数。

参数类型描述
moduleidsID/array仅返回具有给定 ID 的模块。
sortfieldstring/array按给定属性对结果进行排序。

可能的值: moduleid, relative_path.
countOutputboolean这些参数对所有的 get 方法是通用的,详情请参阅 参考说明 页面。
excludeSearchboolean
filterobject
limitinteger
outputquery
preservekeysboolean
searchobject
searchByAnyboolean
searchWildcardsEnabledboolean
sortorderstring/array
startSearchboolean

返回值

(integer/array) 返回两者其中任一:

  • 一组对象数组;
  • 如果已经使用了 countOutput 参数,则检索对象的计数。

示例

通过 ID 检索模块

检索有关模块 “1”、 “2”和 “25”的所有数据。

请求

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "module.get",
  4. "params": {
  5. "output": "extend",
  6. "moduleids": [
  7. "1",
  8. "2",
  9. "25"
  10. ]
  11. },
  12. "id": 1
  13. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": [
  4. {
  5. "moduleid": "1",
  6. "id": "actionlog",
  7. "relative_path": "widgets/actionlog",
  8. "status": "1",
  9. "config": []
  10. },
  11. {
  12. "moduleid": "2",
  13. "id": "clock",
  14. "relative_path": "widgets/clock",
  15. "status": "1",
  16. "config": []
  17. },
  18. {
  19. "moduleid": "25",
  20. "id": "example",
  21. "relative_path": "modules/example_module",
  22. "status": "1",
  23. "config": []
  24. }
  25. ],
  26. "id": 1
  27. }

另请参阅

来源

CModule::get() in ui/include/classes/api/services/CModule.php