提交 040b8e44 编写于 作者: H Hollokin

统一异常打印风格

Signed-off-by: NHollokin <taoyuxin2@huawei.com>
上级 72c88a41
...@@ -137,7 +137,7 @@ let prop = { ...@@ -137,7 +137,7 @@ let prop = {
try{ try{
inputMethod.switchInputMethod(prop, (err, result) => { inputMethod.switchInputMethod(prop, (err, result) => {
if (err) { if (err) {
console.error('Failed to switchInputMethod: ' + JSON.stringify(err)); console.error(`Failed to switchInputMethod: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -147,7 +147,7 @@ try{ ...@@ -147,7 +147,7 @@ try{
} }
}); });
} catch(err) { } catch(err) {
console.error('Failed to switchInputMethod: ' + JSON.stringify(err)); console.error(`Failed to switchInputMethod: ${JSON.stringify(err)}`);
} }
``` ```
## inputMethod.switchInputMethod<sup>9+</sup> ## inputMethod.switchInputMethod<sup>9+</sup>
...@@ -199,10 +199,10 @@ try { ...@@ -199,10 +199,10 @@ try {
console.error('Failed to switchInputMethod.'); console.error('Failed to switchInputMethod.');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to switchInputMethod: ' + JSON.stringify(err)); console.error(`Failed to switchInputMethod: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to switchInputMethod: ' + JSON.stringify(err)); console.error(`Failed to switchInputMethod: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -268,7 +268,7 @@ try { ...@@ -268,7 +268,7 @@ try {
extra: {} extra: {}
}, (err, result) => { }, (err, result) => {
if (err) { if (err) {
console.error('Failed to switchCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -278,7 +278,7 @@ try { ...@@ -278,7 +278,7 @@ try {
} }
}); });
} catch(err) { } catch(err) {
console.error('Failed to switchCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -334,10 +334,10 @@ try { ...@@ -334,10 +334,10 @@ try {
console.error('Failed to switchCurrentInputMethodSubtype.'); console.error('Failed to switchCurrentInputMethodSubtype.');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to switchCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to switchCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -396,7 +396,7 @@ let imSubType = inputMethod.getCurrentInputMethodSubtype(); ...@@ -396,7 +396,7 @@ let imSubType = inputMethod.getCurrentInputMethodSubtype();
try { try {
inputMethod.switchCurrentInputMethodAndSubtype(im, imSubType, (err,result) => { inputMethod.switchCurrentInputMethodAndSubtype(im, imSubType, (err,result) => {
if (err) { if (err) {
console.error('Failed to switchCurrentInputMethodAndSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodAndSubtype: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -406,7 +406,7 @@ try { ...@@ -406,7 +406,7 @@ try {
} }
}); });
} catch (err) { } catch (err) {
console.error('Failed to switchCurrentInputMethodAndSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodAndSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -455,10 +455,10 @@ try { ...@@ -455,10 +455,10 @@ try {
console.error('Failed to switchCurrentInputMethodAndSubtype.'); console.error('Failed to switchCurrentInputMethodAndSubtype.');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to switchCurrentInputMethodAndSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodAndSubtype: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to switchCurrentInputMethodAndSubtype: ' + JSON.stringify(err)); console.error(`Failed to switchCurrentInputMethodAndSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -696,8 +696,8 @@ try { ...@@ -696,8 +696,8 @@ try {
} }
console.info('Succeeded in attaching the inputMethod.'); console.info('Succeeded in attaching the inputMethod.');
}); });
} catch(error) { } catch(err) {
console.error(`Failed to attach: ${JSON.stringify(error)}`); console.error(`Failed to attach: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -748,8 +748,8 @@ try { ...@@ -748,8 +748,8 @@ try {
}).catch((err) => { }).catch((err) => {
console.error(`Failed to attach: ${JSON.stringify(err)}`); console.error(`Failed to attach: ${JSON.stringify(err)}`);
}) })
} catch(error) { } catch(err) {
console.error(`Failed to attach: ${JSON.stringify(error)}`); console.error(`Failed to attach: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -968,8 +968,8 @@ detach(): Promise&lt;void&gt; ...@@ -968,8 +968,8 @@ detach(): Promise&lt;void&gt;
```js ```js
inputMethodController.detach().then(() => { inputMethodController.detach().then(() => {
console.info('Succeeded in detaching inputMethod.'); console.info('Succeeded in detaching inputMethod.');
}).catch((error) => { }).catch((err) => {
console.error(`Failed to detach: ${JSON.stringify(error)}`); console.error(`Failed to detach: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1012,8 +1012,8 @@ try { ...@@ -1012,8 +1012,8 @@ try {
} }
console.info('Succeeded in setting callingWindow.'); console.info('Succeeded in setting callingWindow.');
}); });
} catch(error) { } catch(err) {
console.error(`Failed to setCallingWindow: ${JSON.stringify(error)}`); console.error(`Failed to setCallingWindow: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1059,8 +1059,8 @@ try { ...@@ -1059,8 +1059,8 @@ try {
}).catch((err) => { }).catch((err) => {
console.error(`Failed to setCallingWindow: ${JSON.stringify(err)}`); console.error(`Failed to setCallingWindow: ${JSON.stringify(err)}`);
}) })
} catch(error) { } catch(err) {
console.error(`Failed to setCallingWindow: ${JSON.stringify(error)}`); console.error(`Failed to setCallingWindow: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1102,8 +1102,8 @@ try { ...@@ -1102,8 +1102,8 @@ try {
} }
console.info('Succeeded in updating cursorInfo.'); console.info('Succeeded in updating cursorInfo.');
}); });
} catch(error) { } catch(err) {
console.error(`Failed to updateCursor: ${JSON.stringify(error)}`); console.error(`Failed to updateCursor: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1148,8 +1148,8 @@ try { ...@@ -1148,8 +1148,8 @@ try {
}).catch((err) => { }).catch((err) => {
console.error(`Failed to updateCursor: ${JSON.stringify(err)}`); console.error(`Failed to updateCursor: ${JSON.stringify(err)}`);
}) })
} catch(error) { } catch(err) {
console.error(`Failed to updateCursor: ${JSON.stringify(error)}`); console.error(`Failed to updateCursor: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1191,8 +1191,8 @@ try { ...@@ -1191,8 +1191,8 @@ try {
} }
console.info('Succeeded in changing selection.'); console.info('Succeeded in changing selection.');
}); });
} catch(error) { } catch(err) {
console.error(`Failed to changeSelection: ${JSON.stringify(error)}`); console.error(`Failed to changeSelection: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1237,8 +1237,8 @@ try { ...@@ -1237,8 +1237,8 @@ try {
}).catch((err) => { }).catch((err) => {
console.error(`Failed to changeSelection: ${JSON.stringify(err)}`); console.error(`Failed to changeSelection: ${JSON.stringify(err)}`);
}) })
} catch(error) { } catch(err) {
console.error(`Failed to changeSelection: ${JSON.stringify(error)}`); console.error(`Failed to changeSelection: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1278,8 +1278,8 @@ try { ...@@ -1278,8 +1278,8 @@ try {
} }
console.info('Succeeded in updating attribute.'); console.info('Succeeded in updating attribute.');
}); });
} catch(error) { } catch(err) {
console.error(`Failed to updateAttribute: ${JSON.stringify(error)}`); console.error(`Failed to updateAttribute: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1322,8 +1322,8 @@ try { ...@@ -1322,8 +1322,8 @@ try {
}).catch((err) => { }).catch((err) => {
console.error(`Failed to updateAttribute: ${JSON.stringify(err)}`); console.error(`Failed to updateAttribute: ${JSON.stringify(err)}`);
}) })
} catch(error) { } catch(err) {
console.error(`Failed to updateAttribute: ${JSON.stringify(error)}`); console.error(`Failed to updateAttribute: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1356,9 +1356,9 @@ stopInputSession(callback: AsyncCallback&lt;boolean&gt;): void ...@@ -1356,9 +1356,9 @@ stopInputSession(callback: AsyncCallback&lt;boolean&gt;): void
```js ```js
try { try {
inputMethodController.stopInputSession((error, result) => { inputMethodController.stopInputSession((err, result) => {
if (error) { if (err) {
console.error('Failed to stopInputSession: ' + JSON.stringify(error)); console.error(`Failed to stopInputSession: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -1367,8 +1367,8 @@ try { ...@@ -1367,8 +1367,8 @@ try {
console.error('Failed to stopInputSession.'); console.error('Failed to stopInputSession.');
} }
}); });
} catch(error) { } catch(err) {
console.error('Failed to stopInputSession: ' + JSON.stringify(error)); console.error(`Failed to stopInputSession: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1408,10 +1408,10 @@ try { ...@@ -1408,10 +1408,10 @@ try {
console.error('Failed to stopInputSession.'); console.error('Failed to stopInputSession.');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to stopInputSession: ' + JSON.stringify(err)); console.error(`Failed to stopInputSession: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to stopInputSession: ' + JSON.stringify(err)); console.error(`Failed to stopInputSession: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1449,7 +1449,7 @@ inputMethodController.showSoftKeyboard((err) => { ...@@ -1449,7 +1449,7 @@ inputMethodController.showSoftKeyboard((err) => {
if (!err) { if (!err) {
console.info('Succeeded in showing softKeyboard.'); console.info('Succeeded in showing softKeyboard.');
} else { } else {
console.error('Failed to showSoftKeyboard: ' + JSON.stringify(err)); console.error(`Failed to show softKeyboard: ${JSON.stringify(err)}`);
} }
}) })
``` ```
...@@ -1487,7 +1487,7 @@ showSoftKeyboard(): Promise&lt;void&gt; ...@@ -1487,7 +1487,7 @@ showSoftKeyboard(): Promise&lt;void&gt;
inputMethodController.showSoftKeyboard().then(() => { inputMethodController.showSoftKeyboard().then(() => {
console.log('Succeeded in showing softKeyboard.'); console.log('Succeeded in showing softKeyboard.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to showSoftKeyboard: ' + JSON.stringify(err)); console.error(`Failed to show softKeyboard: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1525,7 +1525,7 @@ inputMethodController.hideSoftKeyboard((err) => { ...@@ -1525,7 +1525,7 @@ inputMethodController.hideSoftKeyboard((err) => {
if (!err) { if (!err) {
console.info('Succeeded in hiding softKeyboard.'); console.info('Succeeded in hiding softKeyboard.');
} else { } else {
console.error('Failed to hideSoftKeyboard: ' + JSON.stringify(err)); console.error(`Failed to hide softKeyboard: ${JSON.stringify(err)}`);
} }
}) })
``` ```
...@@ -1563,7 +1563,7 @@ hideSoftKeyboard(): Promise&lt;void&gt; ...@@ -1563,7 +1563,7 @@ hideSoftKeyboard(): Promise&lt;void&gt;
inputMethodController.hideSoftKeyboard().then(() => { inputMethodController.hideSoftKeyboard().then(() => {
console.log('Succeeded in hiding softKeyboard.'); console.log('Succeeded in hiding softKeyboard.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to hideSoftKeyboard: ' + JSON.stringify(err)); console.error(`Failed to hide softKeyboard: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1590,9 +1590,9 @@ stopInput(callback: AsyncCallback&lt;boolean&gt;): void ...@@ -1590,9 +1590,9 @@ stopInput(callback: AsyncCallback&lt;boolean&gt;): void
**示例:** **示例:**
```js ```js
inputMethodController.stopInput((error, result) => { inputMethodController.stopInput((err, result) => {
if (error) { if (err) {
console.error('Failed to stopInput: ' + JSON.stringify(error)); console.error(`Failed to stopInput: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -1633,7 +1633,7 @@ inputMethodController.stopInput().then((result) => { ...@@ -1633,7 +1633,7 @@ inputMethodController.stopInput().then((result) => {
console.error('Failed to stopInput.'); console.error('Failed to stopInput.');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to stopInput: ' + err); console.error(`Failed to stopInput: ${JSON.stringify(err)}`);
}) })
``` ```
...@@ -1667,8 +1667,8 @@ try { ...@@ -1667,8 +1667,8 @@ try {
inputMethodController.on('insertText', (text) => { inputMethodController.on('insertText', (text) => {
console.info(`Succeeded in subscribing insertText: ${text}`); console.info(`Succeeded in subscribing insertText: ${text}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe insertText: ${JSON.stringify(error)}`); console.error(`Failed to subscribe insertText: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1722,16 +1722,16 @@ try { ...@@ -1722,16 +1722,16 @@ try {
inputMethodController.on('deleteLeft', (length) => { inputMethodController.on('deleteLeft', (length) => {
console.info(`Succeeded in subscribing deleteLeft, length: ${length}`); console.info(`Succeeded in subscribing deleteLeft, length: ${length}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe deleteLeft: ${JSON.stringify(error)}`); console.error(`Failed to subscribe deleteLeft: ${JSON.stringify(err)}`);
} }
try { try {
inputMethodController.on('deleteRight', (length) => { inputMethodController.on('deleteRight', (length) => {
console.info(`Succeeded in subscribing deleteRight, length: ${length}`); console.info(`Succeeded in subscribing deleteRight, length: ${length}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe deleteRight: ${JSON.stringify(error)}`); console.error(`Failed to subscribe deleteRight: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1786,8 +1786,8 @@ try { ...@@ -1786,8 +1786,8 @@ try {
inputMethodController.on('sendKeyboardStatus', (keyBoardStatus) => { inputMethodController.on('sendKeyboardStatus', (keyBoardStatus) => {
console.info(`Succeeded in subscribing sendKeyboardStatus, keyBoardStatus: ${keyBoardStatus}`); console.info(`Succeeded in subscribing sendKeyboardStatus, keyBoardStatus: ${keyBoardStatus}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe sendKeyboardStatus: ${JSON.stringify(error)}`); console.error(`Failed to subscribe sendKeyboardStatus: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1841,8 +1841,8 @@ try { ...@@ -1841,8 +1841,8 @@ try {
inputMethodController.on('sendFunctionKey', (functionKey) => { inputMethodController.on('sendFunctionKey', (functionKey) => {
console.info(`Succeeded in subscribing sendFunctionKey, functionKey.enterKeyType: ${functionKey.enterKeyType}`); console.info(`Succeeded in subscribing sendFunctionKey, functionKey.enterKeyType: ${functionKey.enterKeyType}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe sendFunctionKey: ${JSON.stringify(error)}`); console.error(`Failed to subscribe sendFunctionKey: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1896,8 +1896,8 @@ try { ...@@ -1896,8 +1896,8 @@ try {
inputMethodController.on('moveCursor', (direction) => { inputMethodController.on('moveCursor', (direction) => {
console.info(`Succeeded in subscribing moveCursor, direction: ${direction}`); console.info(`Succeeded in subscribing moveCursor, direction: ${direction}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe moveCursor: ${JSON.stringify(error)}`); console.error(`Failed to subscribe moveCursor: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1951,8 +1951,8 @@ try { ...@@ -1951,8 +1951,8 @@ try {
inputMethodController.on('handleExtendAction', (action) => { inputMethodController.on('handleExtendAction', (action) => {
console.info(`Succeeded in subscribing handleExtendAction, action: ${action}`); console.info(`Succeeded in subscribing handleExtendAction, action: ${action}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to subscribe handleExtendAction: ${JSON.stringify(error)}`); console.error(`Failed to subscribe handleExtendAction: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2147,13 +2147,13 @@ let inputMethodProperty = { ...@@ -2147,13 +2147,13 @@ let inputMethodProperty = {
try { try {
inputMethodSetting.listInputMethodSubtype(inputMethodProperty, (err,data) => { inputMethodSetting.listInputMethodSubtype(inputMethodProperty, (err,data) => {
if (err) { if (err) {
console.error('Failed to listInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listInputMethodSubtype: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in listing inputMethodSubtype.'); console.log('Succeeded in listing inputMethodSubtype.');
}); });
} catch (err) { } catch (err) {
console.error('Failed to listInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listInputMethodSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2200,10 +2200,10 @@ try { ...@@ -2200,10 +2200,10 @@ try {
inputMethodSetting.listInputMethodSubtype(inputMethodProperty).then((data) => { inputMethodSetting.listInputMethodSubtype(inputMethodProperty).then((data) => {
console.info('Succeeded in listing inputMethodSubtype.'); console.info('Succeeded in listing inputMethodSubtype.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to listInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listInputMethodSubtype: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to listInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listInputMethodSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2236,13 +2236,13 @@ listCurrentInputMethodSubtype(callback: AsyncCallback&lt;Array&lt;InputMethodSub ...@@ -2236,13 +2236,13 @@ listCurrentInputMethodSubtype(callback: AsyncCallback&lt;Array&lt;InputMethodSub
try { try {
inputMethodSetting.listCurrentInputMethodSubtype((err, data) => { inputMethodSetting.listCurrentInputMethodSubtype((err, data) => {
if (err) { if (err) {
console.error('Failed to listCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in listing currentInputMethodSubtype.'); console.log('Succeeded in listing currentInputMethodSubtype.');
}); });
} catch(err) { } catch(err) {
console.error('Failed to listCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2276,10 +2276,10 @@ try { ...@@ -2276,10 +2276,10 @@ try {
inputMethodSetting.listCurrentInputMethodSubtype().then((data) => { inputMethodSetting.listCurrentInputMethodSubtype().then((data) => {
console.info('Succeeded in listing currentInputMethodSubtype.'); console.info('Succeeded in listing currentInputMethodSubtype.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to listCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to listCurrentInputMethodSubtype: ' + JSON.stringify(err)); console.error(`Failed to listCurrentInputMethodSubtype: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2313,13 +2313,13 @@ getInputMethods(enable: boolean, callback: AsyncCallback&lt;Array&lt;InputMethod ...@@ -2313,13 +2313,13 @@ getInputMethods(enable: boolean, callback: AsyncCallback&lt;Array&lt;InputMethod
try { try {
inputMethodSetting.getInputMethods(true, (err,data) => { inputMethodSetting.getInputMethods(true, (err,data) => {
if (err) { if (err) {
console.error('Failed to getInputMethods: ' + JSON.stringify(err)); console.error(`Failed to getInputMethods: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in getting inputMethods.'); console.log('Succeeded in getting inputMethods.');
}); });
} catch (err) { } catch (err) {
console.error('Failed to getInputMethods: ' + JSON.stringify(err)); console.error(`Failed to getInputMethods: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2359,10 +2359,10 @@ try { ...@@ -2359,10 +2359,10 @@ try {
inputMethodSetting.getInputMethods(true).then((data) => { inputMethodSetting.getInputMethods(true).then((data) => {
console.info('Succeeded in getting inputMethods.'); console.info('Succeeded in getting inputMethods.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to getInputMethods: ' + JSON.stringify(err)); console.error(`Failed to getInputMethods: ${JSON.stringify(err)}`);
}) })
} catch(err) { } catch(err) {
console.error('Failed to getInputMethods: ' + JSON.stringify(err)); console.error(`Failed to getInputMethods: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2394,13 +2394,13 @@ showOptionalInputMethods(callback: AsyncCallback&lt;boolean&gt;): void ...@@ -2394,13 +2394,13 @@ showOptionalInputMethods(callback: AsyncCallback&lt;boolean&gt;): void
try { try {
inputMethodSetting.showOptionalInputMethods((err, data) => { inputMethodSetting.showOptionalInputMethods((err, data) => {
if (err) { if (err) {
console.error('Failed to showOptionalInputMethods: ' + JSON.stringify(err)); console.error(`Failed to showOptionalInputMethods: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in showing optionalInputMethods.'); console.info('Succeeded in showing optionalInputMethods.');
}); });
} catch (err) { } catch (err) {
console.error('Failed to showOptionalInputMethods: ' + JSON.stringify(err)); console.error(`Failed to showOptionalInputMethods: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2432,7 +2432,7 @@ showOptionalInputMethods(): Promise&lt;boolean&gt; ...@@ -2432,7 +2432,7 @@ showOptionalInputMethods(): Promise&lt;boolean&gt;
inputMethodSetting.showOptionalInputMethods().then((data) => { inputMethodSetting.showOptionalInputMethods().then((data) => {
console.info('Succeeded in showing optionalInputMethods.'); console.info('Succeeded in showing optionalInputMethods.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to showOptionalInputMethods: ' + JSON.stringify(err)); console.error(`Failed to showOptionalInputMethods: ${JSON.stringify(err)}`);
}) })
``` ```
...@@ -2459,7 +2459,7 @@ listInputMethod(callback: AsyncCallback&lt;Array&lt;InputMethodProperty&gt;&gt;) ...@@ -2459,7 +2459,7 @@ listInputMethod(callback: AsyncCallback&lt;Array&lt;InputMethodProperty&gt;&gt;)
```js ```js
inputMethodSetting.listInputMethod((err,data) => { inputMethodSetting.listInputMethod((err,data) => {
if (err) { if (err) {
console.error('Failed to listInputMethod: ' + JSON.stringify(err)); console.error(`Failed to listInputMethod: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in listing inputMethod.'); console.log('Succeeded in listing inputMethod.');
...@@ -2490,7 +2490,7 @@ listInputMethod(): Promise&lt;Array&lt;InputMethodProperty&gt;&gt; ...@@ -2490,7 +2490,7 @@ listInputMethod(): Promise&lt;Array&lt;InputMethodProperty&gt;&gt;
inputMethodSetting.listInputMethod().then((data) => { inputMethodSetting.listInputMethod().then((data) => {
console.info('Succeeded in listing inputMethod.'); console.info('Succeeded in listing inputMethod.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to listInputMethod: ' + JSON.stringify(err)); console.error(`Failed to listInputMethod: ${JSON.stringify(err)}`);
}) })
``` ```
...@@ -2517,7 +2517,7 @@ displayOptionalInputMethod(callback: AsyncCallback&lt;void&gt;): void ...@@ -2517,7 +2517,7 @@ displayOptionalInputMethod(callback: AsyncCallback&lt;void&gt;): void
```js ```js
inputMethodSetting.displayOptionalInputMethod((err) => { inputMethodSetting.displayOptionalInputMethod((err) => {
if (err) { if (err) {
console.error('Failed to displayOptionalInputMethod: ' + JSON.stringify(err)); console.error(`Failed to displayOptionalInputMethod: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in displaying optionalInputMethod.'); console.info('Succeeded in displaying optionalInputMethod.');
...@@ -2548,6 +2548,6 @@ displayOptionalInputMethod(): Promise&lt;void&gt; ...@@ -2548,6 +2548,6 @@ displayOptionalInputMethod(): Promise&lt;void&gt;
inputMethodSetting.displayOptionalInputMethod().then(() => { inputMethodSetting.displayOptionalInputMethod().then(() => {
console.info('Succeeded in displaying optionalInputMethod.'); console.info('Succeeded in displaying optionalInputMethod.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to displayOptionalInputMethod: ' + JSON.stringify(err)); console.error(`Failed to displayOptionalInputMethod: ${JSON.stringify(err)}`);
}) })
``` ```
...@@ -514,13 +514,13 @@ let panelInfo: inputMethodEngine.PanelInfo = { ...@@ -514,13 +514,13 @@ let panelInfo: inputMethodEngine.PanelInfo = {
try { try {
inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo, (err, panel) => { inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo, (err, panel) => {
if (err) { if (err) {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to createPanel: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeed in creating panel.'); console.log('Succeed in creating panel.');
}) })
} catch(err) { } catch(err) {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to createPanel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -562,7 +562,7 @@ let panelInfo: inputMethodEngine.PanelInfo = { ...@@ -562,7 +562,7 @@ let panelInfo: inputMethodEngine.PanelInfo = {
inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo).then((panel) => { inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo).then((panel) => {
console.log('Succeed in creating panel.'); console.log('Succeed in creating panel.');
}).catch((err) => { }).catch((err) => {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to create panel: ${JSON.stringify(err)}`);
}) })
``` ```
...@@ -591,26 +591,26 @@ let panelInfo: inputMethodEngine.PanelInfo = { ...@@ -591,26 +591,26 @@ let panelInfo: inputMethodEngine.PanelInfo = {
try { try {
inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo, (err, panel) => { inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo, (err, panel) => {
if (err) { if (err) {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to create panel: ${JSON.stringify(err)}`);
return; return;
} }
globalThis.inputMethodPanel = panel; globalThis.inputMethodPanel = panel;
console.log('Succeed in creating panel.'); console.log('Succeed in creating panel.');
}) })
} catch(err) { } catch(err) {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to create panel: ${JSON.stringify(err)}`);
} }
try { try {
inputMethodEngine.getInputMethodAbility().destroyPanel(globalThis.inputMethodPanel, (err) => { inputMethodEngine.getInputMethodAbility().destroyPanel(globalThis.inputMethodPanel, (err) => {
if(err !== undefined) { if(err !== undefined) {
console.log('Failed to destroy panel, err: ' + JSON.stringify(err)); console.log(`Failed to destroy panel: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeed in destroying panel.'); console.log('Succeed in destroying panel.');
}) })
} catch(err) { } catch(err) {
console.log('Failed to destroy panel, err: ' + JSON.stringify(err)); console.log(`Failed to destroy panel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -643,24 +643,24 @@ let panelInfo: inputMethodEngine.PanelInfo = { ...@@ -643,24 +643,24 @@ let panelInfo: inputMethodEngine.PanelInfo = {
try { try {
inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo, (err, panel) => { inputMethodEngine.getInputMethodAbility().createPanel(this.context, panelInfo, (err, panel) => {
if (err) { if (err) {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to create panel: ${JSON.stringify(err)}`);
return; return;
} }
globalThis.inputMethodPanel = panel; globalThis.inputMethodPanel = panel;
console.log('Succeed in creating panel.'); console.log('Succeed in creating panel.');
}) })
} catch(err) { } catch(err) {
console.log('Failed to create panel, err: ' + JSON.stringify(err)); console.log(`Failed to create panel: ${JSON.stringify(err)}`);
} }
try { try {
inputMethodEngine.getInputMethodAbility().destroyPanel(globalThis.inputMethodPanel).then(() => { inputMethodEngine.getInputMethodAbility().destroyPanel(globalThis.inputMethodPanel).then(() => {
console.log('Succeed in destroying panel.'); console.log('Succeed in destroying panel.');
}).catch((err) => { }).catch((err) => {
console.log('Failed to destroy panel, err: ' + JSON.stringify(err)); console.log(`Failed to destroy panel: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.log('Failed to destroy panel, err: ' + JSON.stringify(err)); console.log(`Failed to destroy panel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -895,13 +895,13 @@ setUiContent(path: string, callback: AsyncCallback\<void>): void ...@@ -895,13 +895,13 @@ setUiContent(path: string, callback: AsyncCallback\<void>): void
try { try {
panel.setUiContent('pages/page2/page2', (err) => { panel.setUiContent('pages/page2/page2', (err) => {
if (err) { if (err) {
console.error('Failed to set the content. err:' + JSON.stringify(err)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in setting the content.'); console.info('Succeeded in setting the content.');
}); });
} catch (exception) { } catch (err) {
console.error('Failed to set the content. err:' + JSON.stringify(exception)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -933,10 +933,10 @@ try { ...@@ -933,10 +933,10 @@ try {
promise.then(() => { promise.then(() => {
console.info('Succeeded in setting the content.'); console.info('Succeeded in setting the content.');
}).catch((err) =>{ }).catch((err) =>{
console.error('Failed to set the content. err: ' + JSON.stringify(err)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
}); });
} catch (exception) { } catch (err) {
console.error('Failed to set the content. err: ' + JSON.stringify(exception)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -964,13 +964,13 @@ storage.setOrCreate('storageSimpleProp',121); ...@@ -964,13 +964,13 @@ storage.setOrCreate('storageSimpleProp',121);
try { try {
panel.setUiContent('pages/page2/page2', storage, (err) => { panel.setUiContent('pages/page2/page2', storage, (err) => {
if (err) { if (err) {
console.error('Failed to set the content. err:' + JSON.stringify(err)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in setting the content.'); console.info('Succeeded in setting the content.');
}); });
} catch (exception) { } catch (err) {
console.error('Failed to set the content. err:' + JSON.stringify(exception)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1005,10 +1005,10 @@ try { ...@@ -1005,10 +1005,10 @@ try {
promise.then(() => { promise.then(() => {
console.info('Succeeded in setting the content.'); console.info('Succeeded in setting the content.');
}).catch((err) =>{ }).catch((err) =>{
console.error('Failed to set the content. err: ' + JSON.stringify(err)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
}); });
} catch (exception) { } catch (err) {
console.error('Failed to set the content. err: ' + JSON.stringify(exception)); console.error(`Failed to setUiContent: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1036,13 +1036,13 @@ resize(width: number, height: number, callback: AsyncCallback\<void>): void ...@@ -1036,13 +1036,13 @@ resize(width: number, height: number, callback: AsyncCallback\<void>): void
try { try {
panel.resize(500, 1000, (err) => { panel.resize(500, 1000, (err) => {
if (err) { if (err) {
console.error('Failed to change the panel size. Cause:' + JSON.stringify(err)); console.error(`Failed to resize panel: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in changing the panel size.'); console.info('Succeeded in changing the panel size.');
}); });
} catch (exception) { } catch (err) {
console.error('Failed to change the panel size. Cause:' + JSON.stringify(exception)); console.error(`Failed to resize panel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1077,10 +1077,10 @@ try { ...@@ -1077,10 +1077,10 @@ try {
promise.then(() => { promise.then(() => {
console.info('Succeeded in changing the panel size.'); console.info('Succeeded in changing the panel size.');
}).catch((err) =>{ }).catch((err) =>{
console.error('Failed to change the panel size. err: ' + JSON.stringify(err)); console.error(`Failed to resize panel: ${JSON.stringify(err)}`);
}); });
} catch (exception) { } catch (err) {
console.error('Failed to change the panel size. err: ' + JSON.stringify(exception)); console.error(`Failed to resize panel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1108,13 +1108,13 @@ moveTo(x: number, y: number, callback: AsyncCallback\<void>): void ...@@ -1108,13 +1108,13 @@ moveTo(x: number, y: number, callback: AsyncCallback\<void>): void
try { try {
panel.moveTo(300, 300, (err) =>{ panel.moveTo(300, 300, (err) =>{
if (err) { if (err) {
console.error('Failed to move the panel. err:' + JSON.stringify(err)); console.error(`Failed to move panel: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in moving the panel.'); console.info('Succeeded in moving the panel.');
}); });
} catch (exception) { } catch (err) {
console.error('Failed to move the panel. err:' + JSON.stringify(exception)); console.error(`Failed to move panel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1149,10 +1149,10 @@ try { ...@@ -1149,10 +1149,10 @@ try {
promise.then(() => { promise.then(() => {
console.info('Succeeded in moving the panel.'); console.info('Succeeded in moving the panel.');
}).catch((err) =>{ }).catch((err) =>{
console.error('Failed to move the panel. Cause: ' + JSON.stringify(err)); console.error(`Failed to move panel: ${JSON.stringify(err)}`);
}); });
} catch (exception) { } catch (err) {
console.error('Failed to move the panel. Cause:' + JSON.stringify(exception)); console.error(`Failed to move panel: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1175,7 +1175,7 @@ show(callback: AsyncCallback\<void>): void ...@@ -1175,7 +1175,7 @@ show(callback: AsyncCallback\<void>): void
```js ```js
panel.show((err) => { panel.show((err) => {
if (err) { if (err) {
console.error('Failed to show the panel. Cause: ' + JSON.stringify(err)); console.error(`Failed to show panel: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in showing the panel.'); console.info('Succeeded in showing the panel.');
...@@ -1203,7 +1203,7 @@ let promise = panel.show(); ...@@ -1203,7 +1203,7 @@ let promise = panel.show();
promise.then(() => { promise.then(() => {
console.info('Succeeded in showing the panel.'); console.info('Succeeded in showing the panel.');
}).catch((err) =>{ }).catch((err) =>{
console.error('Failed to show the panel. err: ' + JSON.stringify(err)); console.error(`Failed to show panel: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1226,7 +1226,7 @@ hide(callback: AsyncCallback\<void>): void ...@@ -1226,7 +1226,7 @@ hide(callback: AsyncCallback\<void>): void
```js ```js
panel.hide((err) => { panel.hide((err) => {
if (err) { if (err) {
console.error('Failed to hide the panel. Cause: ' + JSON.stringify(err)); console.error(`Failed to hide panel: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in hiding the panel.'); console.info('Succeeded in hiding the panel.');
...@@ -1254,7 +1254,7 @@ let promise = panel.hide(); ...@@ -1254,7 +1254,7 @@ let promise = panel.hide();
promise.then(() => { promise.then(() => {
console.info('Succeeded in hiding the panel.'); console.info('Succeeded in hiding the panel.');
}).catch((err) =>{ }).catch((err) =>{
console.error('Failed to hide the panel. err: ' + JSON.stringify(err)); console.error(`Failed to hide panel: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1354,7 +1354,7 @@ hide(callback: AsyncCallback&lt;void&gt;): void ...@@ -1354,7 +1354,7 @@ hide(callback: AsyncCallback&lt;void&gt;): void
```js ```js
keyboardController.hide((err) => { keyboardController.hide((err) => {
if (err) { if (err) {
console.error('Failed to hide keyboard: ' + JSON.stringify(err)); console.error(`Failed to hide: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in hiding keyboard.'); console.log('Succeeded in hiding keyboard.');
...@@ -1389,7 +1389,7 @@ hide(): Promise&lt;void&gt; ...@@ -1389,7 +1389,7 @@ hide(): Promise&lt;void&gt;
keyboardController.hide().then(() => { keyboardController.hide().then(() => {
console.info('Succeeded in hiding keyboard.'); console.info('Succeeded in hiding keyboard.');
}).catch((err) => { }).catch((err) => {
console.info('Failed to hide keyboard: ' + JSON.stringify(err)); console.info(`Failed to hide: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1416,7 +1416,7 @@ hideKeyboard(callback: AsyncCallback&lt;void&gt;): void ...@@ -1416,7 +1416,7 @@ hideKeyboard(callback: AsyncCallback&lt;void&gt;): void
```js ```js
keyboardController.hideKeyboard((err) => { keyboardController.hideKeyboard((err) => {
if (err) { if (err) {
console.error('Failed to hide Keyboard: ' + JSON.stringify(err)); console.error(`Failed to hideKeyboard: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in hiding keyboard.'); console.log('Succeeded in hiding keyboard.');
...@@ -1447,7 +1447,7 @@ hideKeyboard(): Promise&lt;void&gt; ...@@ -1447,7 +1447,7 @@ hideKeyboard(): Promise&lt;void&gt;
keyboardController.hideKeyboard().then(() => { keyboardController.hideKeyboard().then(() => {
console.info('Succeeded in hiding keyboard.'); console.info('Succeeded in hiding keyboard.');
}).catch((err) => { }).catch((err) => {
console.info('Failed to hide Keyboard: ' + JSON.stringify(err)); console.info(`Failed to hideKeyboard: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1532,7 +1532,7 @@ let action = 1; ...@@ -1532,7 +1532,7 @@ let action = 1;
try { try {
inputClient.sendKeyFunction(action, (err, result) => { inputClient.sendKeyFunction(action, (err, result) => {
if (err) { if (err) {
console.error('Failed to sendKeyFunction: ' + JSON.stringify(err)); console.error(`Failed to sendKeyFunction: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -1542,7 +1542,7 @@ try { ...@@ -1542,7 +1542,7 @@ try {
} }
}); });
} catch (err) { } catch (err) {
console.error('sendKeyFunction err: ' + JSON.stringify(err)); console.error(`Failed to sendKeyFunction: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1586,10 +1586,10 @@ try { ...@@ -1586,10 +1586,10 @@ try {
console.error('Failed to sendKeyFunction. '); console.error('Failed to sendKeyFunction. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to sendKeyFunction:' + JSON.stringify(err)); console.error(`Failed to sendKeyFunction: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.error('Failed to sendKeyFunction: ' + JSON.stringify(err)); console.error(`Failed to sendKeyFunction: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1624,13 +1624,13 @@ let length = 1; ...@@ -1624,13 +1624,13 @@ let length = 1;
try { try {
inputClient.getForward(length, (err, text) => { inputClient.getForward(length, (err, text) => {
if (err) { if (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getForward: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in getting forward, text: ' + text); console.log('Succeeded in getting forward, text: ' + text);
}); });
} catch (err) { } catch (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getForward: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1671,10 +1671,10 @@ try { ...@@ -1671,10 +1671,10 @@ try {
inputClient.getForward(length).then((text) => { inputClient.getForward(length).then((text) => {
console.info('Succeeded in getting forward, text: ' + text); console.info('Succeeded in getting forward, text: ' + text);
}).catch((err) => { }).catch((err) => {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getForward: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getForward: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1709,13 +1709,13 @@ let length = 1; ...@@ -1709,13 +1709,13 @@ let length = 1;
try { try {
inputClient.getBackward(length, (err, text) => { inputClient.getBackward(length, (err, text) => {
if (err) { if (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getBackward: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in getting backward, text: ' + text); console.log('Succeeded in getting backward, text: ' + text);
}); });
} catch (err) { } catch (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getBackward: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1756,10 +1756,10 @@ try { ...@@ -1756,10 +1756,10 @@ try {
inputClient.getBackward(length).then((text) => { inputClient.getBackward(length).then((text) => {
console.info('Succeeded in getting backward, text: ' + text); console.info('Succeeded in getting backward, text: ' + text);
}).catch((err) => { }).catch((err) => {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getBackward: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getBackward: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1794,17 +1794,17 @@ let length = 1; ...@@ -1794,17 +1794,17 @@ let length = 1;
try { try {
inputClient.deleteForward(length, (err, result) => { inputClient.deleteForward(length, (err, result) => {
if (err) { if (err) {
console.error('Failed to delete forward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
console.info('Succeeded in deleting forward. '); console.info('Succeeded in deleting forward. ');
} else { } else {
console.error('Failed to delete forward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
} }
}); });
} catch (err) { } catch (err) {
console.error('Failed to delete forward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1849,10 +1849,10 @@ try { ...@@ -1849,10 +1849,10 @@ try {
console.error('Failed to delete Forward. '); console.error('Failed to delete Forward. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to delete Forward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.error('Failed to delete Forward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -1887,13 +1887,13 @@ let length = 1; ...@@ -1887,13 +1887,13 @@ let length = 1;
try { try {
inputClient.deleteBackward(length, (err, result) => { inputClient.deleteBackward(length, (err, result) => {
if (err) { if (err) {
console.error('Failed to delete Backward: ' + JSON.stringify(err)); console.error(`Failed to deleteBackward: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
console.info('Succeeded in deleting backward. '); console.info('Succeeded in deleting backward. ');
} else { } else {
console.error('Failed to delete Backward: ' + JSON.stringify(err)); console.error(`Failed to deleteBackward: ${JSON.stringify(err)}`);
} }
}); });
} catch (err) { } catch (err) {
...@@ -1941,7 +1941,7 @@ inputClient.deleteBackward(length).then((result) => { ...@@ -1941,7 +1941,7 @@ inputClient.deleteBackward(length).then((result) => {
console.error('Failed to deleteBackward. '); console.error('Failed to deleteBackward. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to deleteBackward: ' + JSON.stringify(err)); console.error(`Failed to deleteBackward: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -1974,7 +1974,7 @@ insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void ...@@ -1974,7 +1974,7 @@ insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void
```js ```js
inputClient.insertText('test', (err, result) => { inputClient.insertText('test', (err, result) => {
if (err) { if (err) {
console.error('Failed to insertText: ' + JSON.stringify(err)); console.error(`Failed to insertText: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -2025,10 +2025,10 @@ try { ...@@ -2025,10 +2025,10 @@ try {
console.error('Failed to insertText. '); console.error('Failed to insertText. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to insertText: ' + JSON.stringify(err)); console.error(`Failed to insertText: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.error('Failed to insertText: ' + JSON.stringify(err)); console.error(`Failed to insertText: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2059,7 +2059,7 @@ getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void ...@@ -2059,7 +2059,7 @@ getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void
```js ```js
inputClient.getEditorAttribute((err, editorAttribute) => { inputClient.getEditorAttribute((err, editorAttribute) => {
if (err) { if (err) {
console.error('Failed to getEditorAttribute: ' + JSON.stringify(err)); console.error(`Failed to getEditorAttribute: ${JSON.stringify(err)}`);
return; return;
} }
console.log('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern)); console.log('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern));
...@@ -2096,7 +2096,7 @@ inputClient.getEditorAttribute().then((editorAttribute) => { ...@@ -2096,7 +2096,7 @@ inputClient.getEditorAttribute().then((editorAttribute) => {
console.info('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern)); console.info('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern));
console.info('editorAttribute.enterKeyType: ' + JSON.stringify(editorAttribute.enterKeyType)); console.info('editorAttribute.enterKeyType: ' + JSON.stringify(editorAttribute.enterKeyType));
}).catch((err) => { }).catch((err) => {
console.error('Failed to getEditorAttribute: ' + JSON.stringify(err)); console.error(`Failed to getEditorAttribute: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -2129,13 +2129,13 @@ moveCursor(direction: number, callback: AsyncCallback&lt;void&gt;): void ...@@ -2129,13 +2129,13 @@ moveCursor(direction: number, callback: AsyncCallback&lt;void&gt;): void
try { try {
inputClient.moveCursor(inputMethodEngine.CURSOR_UP, (err) => { inputClient.moveCursor(inputMethodEngine.CURSOR_UP, (err) => {
if (err) { if (err) {
console.error('Failed to moveCursor: ' + JSON.stringify(err)); console.error(`Failed to moveCursor: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in moving cursor.'); console.info('Succeeded in moving cursor.');
}); });
} catch (err) { } catch (err) {
console.error('Failed to moveCursor: ' + JSON.stringify(err)); console.error(`Failed to moveCursor: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2174,10 +2174,10 @@ try { ...@@ -2174,10 +2174,10 @@ try {
inputClient.moveCursor(inputMethodEngine.CURSOR_UP).then(() => { inputClient.moveCursor(inputMethodEngine.CURSOR_UP).then(() => {
console.log('Succeeded in moving cursor.'); console.log('Succeeded in moving cursor.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to moveCursor: ' + JSON.stringify(err)); console.error(`Failed to moveCursor: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.log('Failed to moveCursor: ' + JSON.stringify(err)); console.log(`Failed to moveCursor: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2211,13 +2211,13 @@ selectByRange(range: Range, callback: AsyncCallback&lt;void&gt;): void ...@@ -2211,13 +2211,13 @@ selectByRange(range: Range, callback: AsyncCallback&lt;void&gt;): void
try { try {
inputClient.selectByRange({start: 0, end: 1}, (err) => { inputClient.selectByRange({start: 0, end: 1}, (err) => {
if (err) { if (err) {
console.error('Failed to selectByRange: ${err.message}'); console.error(`Failed to selectByRange: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in selecting by range.'); console.info('Succeeded in selecting by range.');
}); });
} catch (err) { } catch (err) {
console.error('Failed to selectByRange: ${err.message}'); console.error(`Failed to selectByRange: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2257,10 +2257,10 @@ try { ...@@ -2257,10 +2257,10 @@ try {
inputClient.selectByRange({start: 0, end:1}).then(() => { inputClient.selectByRange({start: 0, end:1}).then(() => {
console.log('Succeeded in selecting by range.'); console.log('Succeeded in selecting by range.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to selectByRange: ${err.message}'); console.error(`Failed to selectByRange: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.log('Failed to selectByRange: ${err.message}'); console.log(`Failed to selectByRange: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2294,13 +2294,13 @@ selectByMovement(movement: Movement, callback: AsyncCallback&lt;void&gt;): void ...@@ -2294,13 +2294,13 @@ selectByMovement(movement: Movement, callback: AsyncCallback&lt;void&gt;): void
try { try {
inputClient.selectByMovement({direction: 1}, (err) => { inputClient.selectByMovement({direction: 1}, (err) => {
if (err) { if (err) {
console.error('Failed to selectByMovement: ${err.message}'); console.error(`Failed to selectByMovement: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in selecting by movement.'); console.info('Succeeded in selecting by movement.');
}); });
} catch (err) { } catch (err) {
console.error('Failed to selectByMovement: ${err.message}'); console.error(`Failed to selectByMovement: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2340,10 +2340,10 @@ try { ...@@ -2340,10 +2340,10 @@ try {
inputClient.selectByMovement({direction: 1}).then(() => { inputClient.selectByMovement({direction: 1}).then(() => {
console.log('Succeeded in selecting by movement.'); console.log('Succeeded in selecting by movement.');
}).catch((err) => { }).catch((err) => {
console.error('Failed to selectByMovement: ${err.message}'); console.error(`Failed to selectByMovement: ${JSON.stringify(err)}`);
}); });
} catch (err) { } catch (err) {
console.log('Failed to selectByMovement: ${err.message}'); console.log(`Failed to selectByMovement: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2375,7 +2375,7 @@ getTextIndexAtCursor(callback: AsyncCallback&lt;number&gt;): void ...@@ -2375,7 +2375,7 @@ getTextIndexAtCursor(callback: AsyncCallback&lt;number&gt;): void
```js ```js
inputClient.getTextIndexAtCursor((err, index) => { inputClient.getTextIndexAtCursor((err, index) => {
if (err) { if (err) {
console.error('Failed to getTextIndexAtCursor: ${err.message}'); console.error(`Failed to getTextIndexAtCursor: ${JSON.stringify(err)}`);
return; return;
} }
console.info('Succeeded in getTextIndexAtCursor: ' + index); console.info('Succeeded in getTextIndexAtCursor: ' + index);
...@@ -2411,7 +2411,7 @@ getTextIndexAtCursor(): Promise&lt;number&gt; ...@@ -2411,7 +2411,7 @@ getTextIndexAtCursor(): Promise&lt;number&gt;
inputClient.getTextIndexAtCursor().then((index) => { inputClient.getTextIndexAtCursor().then((index) => {
console.info('Succeeded in getTextIndexAtCursor: ' + index); console.info('Succeeded in getTextIndexAtCursor: ' + index);
}).catch((err) => { }).catch((err) => {
console.error('Failed to getTextIndexAtCursor: ${err.message}'); console.error(`Failed to getTextIndexAtCursor: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -2452,8 +2452,8 @@ try { ...@@ -2452,8 +2452,8 @@ try {
} }
console.info('Succeeded in sending extend action.'); console.info('Succeeded in sending extend action.');
}); });
} catch(error) { } catch(err) {
console.error(`Failed to sendExtendAction: ${JSON.stringify(error)}`); console.error(`Failed to sendExtendAction: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2497,8 +2497,8 @@ try { ...@@ -2497,8 +2497,8 @@ try {
}).catch((err) => { }).catch((err) => {
console.error(`Failed to sendExtendAction: ${JSON.stringify(err)}`); console.error(`Failed to sendExtendAction: ${JSON.stringify(err)}`);
}); });
} catch(error) { } catch(err) {
console.error(`Failed to sendExtendAction: ${JSON.stringify(error)}`); console.error(`Failed to sendExtendAction: ${JSON.stringify(err)}`);
} }
``` ```
...@@ -2590,7 +2590,7 @@ getForward(length:number, callback: AsyncCallback&lt;string&gt;): void ...@@ -2590,7 +2590,7 @@ getForward(length:number, callback: AsyncCallback&lt;string&gt;): void
let length = 1; let length = 1;
textInputClient.getForward(length, (err, text) => { textInputClient.getForward(length, (err, text) => {
if (err) { if (err) {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getForward: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in getting forward, text: ' + text); console.log('Succeeded in getting forward, text: ' + text);
...@@ -2628,7 +2628,7 @@ let length = 1; ...@@ -2628,7 +2628,7 @@ let length = 1;
textInputClient.getForward(length).then((text) => { textInputClient.getForward(length).then((text) => {
console.info('Succeeded in getting forward, text: ' + text); console.info('Succeeded in getting forward, text: ' + text);
}).catch((err) => { }).catch((err) => {
console.error('Failed to getForward: ' + JSON.stringify(err)); console.error(`Failed to getForward: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -2657,7 +2657,7 @@ getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void ...@@ -2657,7 +2657,7 @@ getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void
let length = 1; let length = 1;
textInputClient.getBackward(length, (err, text) => { textInputClient.getBackward(length, (err, text) => {
if (err) { if (err) {
console.error('Failed to getBackward: ' + JSON.stringify(err)); console.error(`Failed to getBackward: ${JSON.stringify(err)}`);
return; return;
} }
console.log('Succeeded in getting borward, text: ' + text); console.log('Succeeded in getting borward, text: ' + text);
...@@ -2695,7 +2695,7 @@ let length = 1; ...@@ -2695,7 +2695,7 @@ let length = 1;
textInputClient.getBackward(length).then((text) => { textInputClient.getBackward(length).then((text) => {
console.info('Succeeded in getting backward: ' + JSON.stringify(text)); console.info('Succeeded in getting backward: ' + JSON.stringify(text));
}).catch((err) => { }).catch((err) => {
console.error('Failed to getBackward: ' + JSON.stringify(err)); console.error(`Failed to getBackward: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -2724,7 +2724,7 @@ deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void ...@@ -2724,7 +2724,7 @@ deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void
let length = 1; let length = 1;
textInputClient.deleteForward(length, (err, result) => { textInputClient.deleteForward(length, (err, result) => {
if (err) { if (err) {
console.error('Failed to deleteForward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -2770,7 +2770,7 @@ textInputClient.deleteForward(length).then((result) => { ...@@ -2770,7 +2770,7 @@ textInputClient.deleteForward(length).then((result) => {
console.error('Failed to delete forward. '); console.error('Failed to delete forward. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to delete forward: ' + JSON.stringify(err)); console.error(`Failed to deleteForward: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -2799,7 +2799,7 @@ deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void ...@@ -2799,7 +2799,7 @@ deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void
let length = 1; let length = 1;
textInputClient.deleteBackward(length, (err, result) => { textInputClient.deleteBackward(length, (err, result) => {
if (err) { if (err) {
console.error('Failed to delete backward: ' + JSON.stringify(err)); console.error(`Failed to deleteBackward: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -2845,7 +2845,7 @@ textInputClient.deleteBackward(length).then((result) => { ...@@ -2845,7 +2845,7 @@ textInputClient.deleteBackward(length).then((result) => {
console.error('Failed to deleteBackward. '); console.error('Failed to deleteBackward. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to deleteBackward: ' + JSON.stringify(err)); console.error(`Failed to deleteBackward: ${JSON.stringify(err)}`);
}); });
``` ```
### sendKeyFunction<sup>(deprecated)</sup> ### sendKeyFunction<sup>(deprecated)</sup>
...@@ -2873,7 +2873,7 @@ sendKeyFunction(action: number, callback: AsyncCallback&lt;boolean&gt;): void ...@@ -2873,7 +2873,7 @@ sendKeyFunction(action: number, callback: AsyncCallback&lt;boolean&gt;): void
let action = 1; let action = 1;
textInputClient.sendKeyFunction(action, (err, result) => { textInputClient.sendKeyFunction(action, (err, result) => {
if (err) { if (err) {
console.error('Failed to sendKeyFunction: ' + JSON.stringify(err)); console.error(`Failed to sendKeyFunction: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -2919,7 +2919,7 @@ textInputClient.sendKeyFunction(action).then((result) => { ...@@ -2919,7 +2919,7 @@ textInputClient.sendKeyFunction(action).then((result) => {
console.error('Failed to sendKeyFunction. '); console.error('Failed to sendKeyFunction. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to sendKeyFunction:' + JSON.stringify(err)); console.error(`Failed to sendKeyFunction: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -2947,7 +2947,7 @@ insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void ...@@ -2947,7 +2947,7 @@ insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void
```js ```js
textInputClient.insertText('test', (err, result) => { textInputClient.insertText('test', (err, result) => {
if (err) { if (err) {
console.error('Failed to insertText: ' + JSON.stringify(err)); console.error(`Failed to insertText: ${JSON.stringify(err)}`);
return; return;
} }
if (result) { if (result) {
...@@ -2992,7 +2992,7 @@ textInputClient.insertText('test').then((result) => { ...@@ -2992,7 +2992,7 @@ textInputClient.insertText('test').then((result) => {
console.error('Failed to insertText. '); console.error('Failed to insertText. ');
} }
}).catch((err) => { }).catch((err) => {
console.error('Failed to insertText: ' + JSON.stringify(err)); console.error(`Failed to insertText: ${JSON.stringify(err)}`);
}); });
``` ```
...@@ -3019,7 +3019,7 @@ getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void ...@@ -3019,7 +3019,7 @@ getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void
```js ```js
textInputClient.getEditorAttribute((err, editorAttribute) => { textInputClient.getEditorAttribute((err, editorAttribute) => {
if (err) { if (err) {
console.error('Failed to getEditorAttribute: ' + JSON.stringify(err)); console.error(`Failed to getEditorAttribute: ${JSON.stringify(err)}`);
return; return;
} }
console.log('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern)); console.log('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern));
...@@ -3052,7 +3052,7 @@ textInputClient.getEditorAttribute().then((editorAttribute) => { ...@@ -3052,7 +3052,7 @@ textInputClient.getEditorAttribute().then((editorAttribute) => {
console.info('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern)); console.info('editorAttribute.inputPattern: ' + JSON.stringify(editorAttribute.inputPattern));
console.info('editorAttribute.enterKeyType: ' + JSON.stringify(editorAttribute.enterKeyType)); console.info('editorAttribute.enterKeyType: ' + JSON.stringify(editorAttribute.enterKeyType));
}).catch((err) => { }).catch((err) => {
console.error('Failed to getEditorAttribute: ' + JSON.stringify(err)); console.error(`Failed to getEditorAttribute: ${JSON.stringify(err)}`);
}); });
``` ```
<!--no_check--> <!--no_check-->
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册