提交 b40a84ce 编写于 作者: X xinking129

fix review interface description

Signed-off-by: Nxinking129 <xinxin13@huawei.com>
上级 2e782163
......@@ -24,7 +24,7 @@
| 接口名称 | 说明 |
| ------------------------------ | ------------------------------------------------------------ |
| onUnhandledException(errMsg: string): void | 系统回调接口,应用注册后,当应用产生未捕获的异常时的回调。 |
| onException?(errObject: Error): void | 系统回调接口,应用注册后,当应用底层需要通知上层js异常事件时的回调。 |
| onException?(errObject: Error): void | 系统回调接口,应用注册后,当应用产生异常上报js层时的回调。 |
### 解除注册结果码
......@@ -44,7 +44,7 @@ let registerId = -1;
let callback = {
onUnhandledException: function (errMsg) {
console.log(errMsg);
}
},
onException: function (errorObj) {
console.log('onException, name: ', errorObj.name);
console.log('onException, message: ', errorObj.message);
......
......@@ -38,7 +38,7 @@ on(type: 'error', observer: ErrorObserver): number;
let observer = {
onUnhandledException(errorMsg) {
console.log('onUnhandledException, errorMsg: ', errorMsg);
}
},
onException(errorObj) {
console.log('onException, name: ', errorObj.name);
console.log('onException, message: ', errorObj.message);
......
......@@ -38,7 +38,7 @@ try {
onException?(errObject: Error): void;
当Native层发生异常事件并且需要通知js层时调用。
将在应用运行异常时调用。
**系统能力**:SystemCapability.Ability.AbilityRuntime.Core
......@@ -46,7 +46,7 @@ onException?(errObject: Error): void;
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| errObject | Error | 否 | 有关于异常事件名字、消息和错误堆栈信息的对象。 |
| errObject | Error | 是 | 有关异常事件名字、消息和错误堆栈信息的对象。 |
**示例:**
......@@ -56,7 +56,7 @@ import errorManager from '@ohos.app.ability.errorManager';
let observer = {
onUnhandledException(errorMsg) {
console.error('onUnhandledException, errorMsg: ', errorMsg);
}
},
onException(errorObj) {
console.log('onException, name: ', errorObj.name);
console.log('onException, message: ', errorObj.message);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册