diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md b/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md index efe96fbc82f2f02369576b6a13b119a8ad8b1f83..f320b682adce24a5ce0dcc4071393b4b3b1df968 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md @@ -47,9 +47,10 @@ getInputMethodController(): InputMethodController | [InputMethodController](#InputMethodController) | 回调返回当前客户端实例。 | **示例:** - ```js + +```js var InputMethodController = inputMethod.getInputMethodController(); - ``` +``` ## inputMethod.getInputMethodSetting8+ getInputMethodSetting(): InputMethodSetting @@ -66,9 +67,10 @@ getInputMethodSetting(): InputMethodSetting **示例:** - ```js + +```js var InputMethodSetting = inputMethod.getInputMethodSetting(); - ``` +``` ## InputMethodController @@ -91,7 +93,7 @@ stopInput(callback: AsyncCallback<boolean>): void **示例:** ```js - InputMethodController.stopInput((error)=>{ + InputMethodController.stopInput((error)=>{ console.info('stopInput'); }); ``` @@ -112,10 +114,9 @@ stopInput(): Promise<boolean> **示例:** - ```js - var isSuccess = InputMethodController.stopInput(); - console.info('stopInput isSuccess = ' + isSuccess); + var isSuccess = InputMethodController.stopInput(); + console.info('stopInput isSuccess = ' + isSuccess); ``` ## InputMethodSetting8+ @@ -136,14 +137,15 @@ listInputMethod(callback: AsyncCallback<Array<InputMethodProperty>>) | callback | Array<[InputMethodProperty](#InputMethodProperty)> | 是 | 返回已安装输入法列表。 | **示例:** - ```js - InputMethodSetting.listInputMethod((properties)=>{ - for (var i = 0;i < properties.length; i++) { - var property = properties[i]; - console.info(property.packageName + "/" + property.methodId); - } - }); - ``` + +```js + InputMethodSetting.listInputMethod((properties)=>{ + for (var i = 0;i < properties.length; i++) { + var property = properties[i]; + console.info(property.packageName + "/" + property.methodId); + } + }); +``` ### listInputMethod @@ -159,13 +161,14 @@ listInputMethod(): Array<InputMethodProperty> | Promise> | 返回已安装输入法列表。 | **示例:** - ```js + +```js var properties = InputMethodSetting.listInputMethod(); for (var i = 0;i < properties.length; i++) { var property = properties[i]; console.info(property.packageName + "/" + property.methodId); } - ``` +``` ### displayOptionalInputMethod @@ -182,11 +185,12 @@ displayOptionalInputMethod(callback: AsyncCallback<void>): void | callback | AsyncCallback<void> | 是 | 回调函数。 | **示例:** - ```js - InputMethodSetting.displayOptionalInputMethod(()=>{ - console.info('displayOptionalInputMethod is called'); - }); - ``` + +```js + InputMethodSetting.displayOptionalInputMethod(()=>{ + console.info('displayOptionalInputMethod is called'); + }); +``` ### displayOptionalInputMethod @@ -203,6 +207,7 @@ displayOptionalInputMethod(callback: AsyncCallback<void>): void | Promise<void> | 回调函数。 | **示例:** - ```js - InputMethodSetting.displayOptionalInputMethod(); - ``` \ No newline at end of file + +```js + InputMethodSetting.displayOptionalInputMethod(); +``` \ No newline at end of file