提交 f926b203 编写于 作者: M mayunteng_1

inputdevice修改

Signed-off-by: Nmayunteng_1 <mayunteng@huawei.com>
Change-Id: Ib9f06bbfb021f6797cda927f76e296feaeaa7aea
上级 9f97bc11
...@@ -238,7 +238,7 @@ getDeviceIds(callback: AsyncCallback&lt;Array&lt;number&gt;&gt;): void ...@@ -238,7 +238,7 @@ getDeviceIds(callback: AsyncCallback&lt;Array&lt;number&gt;&gt;): void
**示例** **示例**
```js ```js
inputDevice.getDeviceList((error, ids) => { inputDevice.getDeviceIds((error, ids) => {
if (error) { if (error) {
console.log(`Failed to get device id list, error: ${JSON.stringify(error, [`code`, `message`])}`); console.log(`Failed to get device id list, error: ${JSON.stringify(error, [`code`, `message`])}`);
return; return;
...@@ -266,7 +266,7 @@ getDeviceIds(): Promise&lt;Array&lt;number&gt;&gt; ...@@ -266,7 +266,7 @@ getDeviceIds(): Promise&lt;Array&lt;number&gt;&gt;
**示例** **示例**
```js ```js
inputDevice.getDeviceList().then((ids) => { inputDevice.getDeviceIds().then((ids) => {
console.log(`Device id list: ${JSON.stringify(ids)}`); console.log(`Device id list: ${JSON.stringify(ids)}`);
}); });
``` ```
...@@ -292,7 +292,7 @@ getDevice(deviceId: number, callback: AsyncCallback&lt;InputDeviceData&gt;): voi ...@@ -292,7 +292,7 @@ getDevice(deviceId: number, callback: AsyncCallback&lt;InputDeviceData&gt;): voi
```js ```js
// 获取输入设备id为1的设备信息。 // 获取输入设备id为1的设备信息。
inputDevice.getDeviceInfo(1, (error, deviceData) => { inputDevice.getDevice(1, (error, deviceData) => {
if (error) { if (error) {
console.log(`Failed to get device info, error: ${JSON.stringify(error, [`code`, `message`])}`); console.log(`Failed to get device info, error: ${JSON.stringify(error, [`code`, `message`])}`);
return; return;
...@@ -327,7 +327,7 @@ getDevice(deviceId: number): Promise&lt;InputDeviceData&gt; ...@@ -327,7 +327,7 @@ getDevice(deviceId: number): Promise&lt;InputDeviceData&gt;
```js ```js
// 获取输入设备id为1的设备信息。 // 获取输入设备id为1的设备信息。
inputDevice.getDeviceInfo(1).then((deviceData) => { inputDevice.getDevice(1).then((deviceData) => {
console.log(`Device info: ${JSON.stringify(deviceData)}`); console.log(`Device info: ${JSON.stringify(deviceData)}`);
}); });
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册