提交 47d828d3 编写于 作者: Y youqijing

display接口资料更新:增加getAllDisplay接口资料

Signed-off-by: Nyouqijing <youqijing@huawei.com>
Change-Id: I7b4c6d0fff49ff21a6b2ccd41b5f8a2f872c9dbf
上级 4d34f6e8
......@@ -70,6 +70,29 @@ getDefaultDisplay(callback: AsyncCallback&lt;Display&gt;): void
});
```
## display.getAllDisplay
getAllDisplay(callback: AsyncCallback&lt;Array&lt;Display&gt;&gt;): void
获取当前所有的display对象。
- 参数
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------------- | ---- | ------------------------------- |
| callback | AsyncCallback&lt;Array&lt;Display&gt;&gt; | 是 | 回调返回当前所有的display对象。 |
- 示例
```
display.getAllDisplay((err, data) => {
if (err) {
console.error('Failed to obtain all the display objects. Code: ' + JSON.stringify(err));
return;
}
console.info('Succeeded in obtaining all the display objects. Data: ' + JSON.stringify(data))
});
```
## display.on('add'|'remove'|'change')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册