From a11e3d3376f54cd1aeda04424f11ffe5a957cecb Mon Sep 17 00:00:00 2001 From: king_he <6384784@qq.com> Date: Fri, 10 Jun 2022 00:38:07 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-inputdevice.md. Signed-off-by: king_he <6384784@qq.com> --- .../reference/apis/js-apis-inputdevice.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputdevice.md b/zh-cn/application-dev/reference/apis/js-apis-inputdevice.md index cd26e2b93f..dd8e573ff3 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputdevice.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputdevice.md @@ -19,7 +19,7 @@ import inputDevice from '@ohos.multimodalInput.inputDevice'; on(type: “change”, listener: Callback<DeviceListener>): void -监听设备的热插拔事件。 +监听输入设备的热插拔事件。 **系统能力**:SystemCapability.MultimodalInput.Input.InputDevice @@ -54,7 +54,7 @@ inputDevice.on("change", (data) => { off(type: “change”, listener?: Callback<DeviceListener>): void -取消监听设备的热插拔事件。 +取消监听输入设备的热插拔事件。 **系统能力**:SystemCapability.MultimodalInput.Input.InputDevice @@ -90,7 +90,7 @@ getDeviceIds(callback: AsyncCallback<Array<number>>): void **参数**: -| 参数 | 类型 | 必填 | 说明 | +| 参数 | 类型 | 必填 | 说明 | | -------- | ---------------------------------------- | ---- | ----- | | callback | AsyncCallback<Array<number>> | 是 | 回调函数。 | @@ -134,9 +134,9 @@ getDevice(deviceId: number, callback: AsyncCallback<InputDeviceData>): voi **参数**: -| 参数 | 类型 | 必填 | 说明 | +| 参数 | 类型 | 必填 | 说明 | | -------- | ---------------------------------------- | ---- | --------------------------- | -| deviceId | number | 是 | 需要获取信息的设备id。 | +| deviceId | number | 是 | 需要获取信息的设备id。 | | callback | AsyncCallback<[InputDeviceData](#inputdevicedata)> | 是 | 回调函数,异步返回InputDeviceData对象。 | **示例**: @@ -311,7 +311,7 @@ inputDevice.getKeyboardType().then((ret)=>{ ## AxisType9+ -输入设备的轴类型 +输入设备的轴类型。 **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice @@ -329,7 +329,7 @@ inputDevice.getKeyboardType().then((ret)=>{ ## AxisRange -输入设备的轴信息 +输入设备的轴信息。 **系统能力**: 以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice -- GitLab