js-apis-app-ability-uiAbility.md 27.8 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.app.ability.UIAbility (UIAbility)
M
m00512953 已提交
2

Z
zhongjianfei 已提交
3
UIAbility是包含UI界面的应用组件,提供组件创建、销毁、前后台切换等生命周期回调,同时也具备组件协同的能力,组件协同主要提供如下常用功能:
M
m00512953 已提交
4

Z
zhongjianfei 已提交
5 6
- [Caller](#caller):由[startAbilityByCall](js-apis-inner-application-uiAbilityContext.md#uiabilitycontextstartabilitybycall)接口返回,CallerAbility(调用者)可使用Caller与CalleeAbility(被调用者)进行通信。
- [Callee](#callee):UIAbility的内部对象,CalleeAbility(被调用者)可以通过Callee与Caller进行通信。
M
m00512953 已提交
7 8 9 10 11 12 13 14 15

> **说明:**
> 
> 本模块首批接口从API version 9 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。  
> 本模块接口仅可在Stage模型下使用。

## 导入模块

```ts
D
donglin 已提交
16
import UIAbility from '@ohos.app.ability.UIAbility';
M
m00512953 已提交
17 18 19 20
```

## 属性

M
m00512953 已提交
21
**系统能力**:以下各项对应的系统能力均为SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
22

Z
zhongjianfei 已提交
23
| 名称 | 类型 | 可读 | 可写 | 说明 |
M
m00512953 已提交
24
| -------- | -------- | -------- | -------- | -------- |
Z
zhongjianfei 已提交
25 26 27 28
| context | [UIAbilityContext](js-apis-inner-application-uiAbilityContext.md) | 是 | 否 | 上下文。 |
| launchWant | [Want](js-apis-app-ability-want.md) | 是 | 否 | UIAbility启动时的参数。 |
| lastRequestWant | [Want](js-apis-app-ability-want.md) | 是 | 否 | UIAbility最后请求时的参数。|
| callee | [Callee](#callee) | 是 | 否 | 调用Stub(桩)服务对象。|
M
m00512953 已提交
29

Z
zhongjianfei 已提交
30
## UIAbility.onCreate
M
m00512953 已提交
31

M
m00512953 已提交
32
onCreate(want: Want, param: AbilityConstant.LaunchParam): void;
M
m00512953 已提交
33

Z
zhongjianfei 已提交
34
UIAbility创建时回调,执行初始化业务逻辑操作。
M
m00512953 已提交
35

M
m00512953 已提交
36
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
37 38 39

**参数:**

Z
zhongjianfei 已提交
40 41 42
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| want | [Want](js-apis-app-ability-want.md) | 是 | 当前UIAbility的Want类型信息,包括ability名称、bundle名称等。 |
M
m00512953 已提交
43
| param | [AbilityConstant.LaunchParam](js-apis-app-ability-abilityConstant.md#abilityconstantlaunchparam) | 是 | 创建 ability、上次异常退出的原因信息。 |
M
m00512953 已提交
44 45 46 47

**示例:**

  ```ts
Z
zhongjianfei 已提交
48
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
49
      onCreate(want, param) {
M
mingxihua 已提交
50
          console.log('onCreate, want: ${want.abilityName}');
M
m00512953 已提交
51 52 53 54 55
      }
  }
  ```


Z
zhongjianfei 已提交
56
## UIAbility.onWindowStageCreate
M
m00512953 已提交
57 58 59 60 61

onWindowStageCreate(windowStage: window.WindowStage): void

当WindowStage创建后调用。

M
m00512953 已提交
62
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
63 64 65

**参数:**

Z
zhongjianfei 已提交
66 67
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
m00512953 已提交
68
| windowStage | [window.WindowStage](js-apis-window.md#windowstage9) | 是 | WindowStage相关信息。 |
M
m00512953 已提交
69 70 71 72

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
73
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
74 75 76 77 78 79 80
      onWindowStageCreate(windowStage) {
          console.log('onWindowStageCreate');
      }
  }
  ```


Z
zhongjianfei 已提交
81
## UIAbility.onWindowStageDestroy
M
m00512953 已提交
82 83 84 85 86

onWindowStageDestroy(): void

当WindowStage销毁后调用。

M
m00512953 已提交
87
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
88 89 90 91

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
92
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
93 94 95 96 97 98 99
      onWindowStageDestroy() {
          console.log('onWindowStageDestroy');
      }
  }
  ```


Z
zhongjianfei 已提交
100
## UIAbility.onWindowStageRestore
M
m00512953 已提交
101 102 103 104 105

onWindowStageRestore(windowStage: window.WindowStage): void

当迁移多实例ability时,恢复WindowStage后调用。

M
m00512953 已提交
106
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
107 108 109

**参数:**

Z
zhongjianfei 已提交
110 111
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
m00512953 已提交
112
| windowStage | [window.WindowStage](js-apis-window.md#windowstage9) | 是 | WindowStage相关信息。 |
M
m00512953 已提交
113 114 115 116

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
117
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
118 119 120 121 122 123 124
      onWindowStageRestore(windowStage) {
          console.log('onWindowStageRestore');
      }
  }
  ```


Z
zhongjianfei 已提交
125
## UIAbility.onDestroy
M
m00512953 已提交
126

M
mingxihua 已提交
127
onDestroy(): void | Promise<void>;
M
m00512953 已提交
128

Z
zhongjianfei 已提交
129
UIAbility生命周期回调,在销毁时回调,执行资源清理等操作。
M
m00512953 已提交
130

M
m00512953 已提交
131
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
132 133 134

**示例:**
    
Y
yangzk 已提交
135

M
m00512953 已提交
136
  ```ts
Z
zhongjianfei 已提交
137
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
138 139 140 141 142 143
      onDestroy() {
          console.log('onDestroy');
      }
  }
  ```

Y
yangzk 已提交
144 145 146 147 148 149 150 151 152 153
在执行完onDestroy生命周期回调后,应用可能会退出,从而可能导致onDestroy中的异步函数未能正确执行,比如异步写入数据库。可以使用异步生命周期,以确保异步onDestroy完成后再继续后续的生命周期。

  ```ts
class MyUIAbility extends UIAbility {
    async onDestroy() {
        console.log('onDestroy');
        // 调用异步函数...
    }
}
  ```
M
m00512953 已提交
154

Z
zhongjianfei 已提交
155
## UIAbility.onForeground
M
m00512953 已提交
156 157 158

onForeground(): void;

Z
zhongjianfei 已提交
159
UIAbility生命周期回调,当应用从后台转到前台时触发。
M
m00512953 已提交
160

M
m00512953 已提交
161
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
162 163 164 165

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
166
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
167 168 169 170 171 172 173
      onForeground() {
          console.log('onForeground');
      }
  }
  ```


Z
zhongjianfei 已提交
174
## UIAbility.onBackground
M
m00512953 已提交
175 176 177

onBackground(): void;

Z
zhongjianfei 已提交
178
UIAbility生命周期回调,当应用从前台转到后台时触发。
M
m00512953 已提交
179

M
m00512953 已提交
180
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
181 182 183 184

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
185
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
186 187 188 189 190 191 192
      onBackground() {
          console.log('onBackground');
      }
  }
  ```


Z
zhongjianfei 已提交
193
## UIAbility.onContinue
M
m00512953 已提交
194

M
mingxihua 已提交
195
onContinue(wantParam: { [key: string]: Object }): AbilityConstant.OnContinueResult;
M
m00512953 已提交
196 197 198

当ability迁移准备迁移时触发,保存数据。

M
m00512953 已提交
199
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
200 201 202

**参数:**

Z
zhongjianfei 已提交
203 204 205
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| wantParam | {[key: string]: any} | 是 | want相关参数。 |
M
m00512953 已提交
206 207 208

**返回值:**

Z
zhongjianfei 已提交
209 210
| 类型 | 说明 |
| -------- | -------- |
M
m00512953 已提交
211
| [AbilityConstant.OnContinueResult](js-apis-app-ability-abilityConstant.md#abilityconstantoncontinueresult) | 继续的结果。 |
M
m00512953 已提交
212 213 214 215

**示例:**
    
  ```ts
M
mingxihua 已提交
216
  import AbilityConstant from '@ohos.app.ability.AbilityConstant';
Z
zhongjianfei 已提交
217
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
218 219
      onContinue(wantParams) {
          console.log('onContinue');
M
mingxihua 已提交
220
          wantParams['myData'] = 'my1234567';
M
m00512953 已提交
221
          return AbilityConstant.OnContinueResult.AGREE;
M
m00512953 已提交
222 223 224 225 226
      }
  }
  ```


Z
zhongjianfei 已提交
227
## UIAbility.onNewWant
M
m00512953 已提交
228

M
m00512953 已提交
229
onNewWant(want: Want, launchParams: AbilityConstant.LaunchParam): void;
M
m00512953 已提交
230

M
m00512953 已提交
231
当传入新的Want,ability再次被拉起时会回调执行该方法。
M
m00512953 已提交
232

M
m00512953 已提交
233
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
234 235 236

**参数:**

Z
zhongjianfei 已提交
237 238 239
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| want | [Want](js-apis-app-ability-want.md) | 是 | Want类型参数,如ability名称,包名等。 |
M
m00512953 已提交
240
| launchParams | [AbilityConstant.LaunchParam](js-apis-app-ability-abilityConstant.md#abilityconstantlaunchparam) | 是 | UIAbility启动的原因、上次异常退出的原因信息。 |
M
m00512953 已提交
241 242 243 244

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
245
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
246
      onNewWant(want, launchParams) {
M
mingxihua 已提交
247 248
          console.log('onNewWant, want: ${want.abilityName}');
          console.log('onNewWant, launchParams: ${JSON.stringify(launchParams)}');
M
m00512953 已提交
249 250 251 252
      }
  }
  ```

Z
zhongjianfei 已提交
253
## UIAbility.onDump
M
m00512953 已提交
254

D
merge  
donglin 已提交
255
onDump(params: Array\<string>): Array\<string>;
M
m00512953 已提交
256 257 258

转储客户端信息时调用。

M
m00512953 已提交
259
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
260 261 262

**参数:**

Z
zhongjianfei 已提交
263 264 265
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| params | Array\<string> | 是 | 表示命令形式的参数。|
M
m00512953 已提交
266 267 268 269

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
270
  class MyUIAbility extends UIAbility {
D
merge  
donglin 已提交
271
      onDump(params) {
M
mingxihua 已提交
272
          console.log('dump, params: ${JSON.stringify(params)}');
M
mingxihua 已提交
273
          return ['params'];
M
m00512953 已提交
274 275 276 277 278
      }
  }
  ```


Z
zhongjianfei 已提交
279
## UIAbility.onSaveState
M
m00512953 已提交
280

M
mingxihua 已提交
281
onSaveState(reason: AbilityConstant.StateType, wantParam : {[key: string]: Object}): AbilityConstant.OnSaveResult;
M
m00512953 已提交
282

Z
zhongjianfei 已提交
283
该API配合[appRecovery](js-apis-app-ability-appRecovery.md)使用。在应用故障时,如果使能了自动保存状态,框架将回调onSaveState保存UIAbility状态。
M
m00512953 已提交
284

M
m00512953 已提交
285
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
286 287 288

**参数:**

Z
zhongjianfei 已提交
289 290
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
m00512953 已提交
291
| reason | [AbilityConstant.StateType](js-apis-app-ability-abilityConstant.md#abilityconstantstatetype) | 是 | 回调保存状态的原因。 |
Z
zhongjianfei 已提交
292
| wantParam | {[key:&nbsp;string]:&nbsp;any} | 是 | want相关参数。 |
M
m00512953 已提交
293 294 295

**返回值:**

Z
zhongjianfei 已提交
296 297
| 类型 | 说明 |
| -------- | -------- |
M
m00512953 已提交
298
| [AbilityConstant.OnSaveResult](js-apis-app-ability-abilityConstant.md#abilityconstantonsaveresult) | 是否同意保存当前UIAbility的状态。 |
M
m00512953 已提交
299 300 301 302

**示例:**

  ```ts
M
mingxihua 已提交
303
import AbilityConstant from '@ohos.app.ability.AbilityConstant';
M
m00512953 已提交
304

Z
zhongjianfei 已提交
305
class MyUIAbility extends UIAbility {
M
m00512953 已提交
306 307
    onSaveState(reason, wantParam) {
        console.log('onSaveState');
M
mingxihua 已提交
308
        wantParam['myData'] = 'my1234567';
M
m00512953 已提交
309
        return AbilityConstant.OnSaveResult.RECOVERY_AGREE;
M
m00512953 已提交
310 311 312 313
    }
}
  ```

X
xieqiongyang 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
## UIAbility.onShare<sup>10+</sup>

onShare(wantParam:{ [key: string]: Object }): void;

ability分享数据。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| wantParam | {[key:&nbsp;string]:&nbsp;Object} | 是 | want相关参数。 |

**示例:**
    
  ```ts
import AbilityConstant from '@ohos.app.ability.AbilityConstant';
class MyUIAbility extends UIAbility {
    onShare(wantParams) {
        console.log('onShare');
        wantParams['ohos.extra.param.key.contentTitle'] = {title: "W3"};
        wantParams['ohos.extra.param.key.shareAbstract'] = {abstract: "communication for huawei employee"};
        wantParams['ohos.extra.param.key.shareUrl'] = {url: "w3.huawei.com"};
    }
}
  ```
M
m00512953 已提交
341 342 343 344 345 346 347 348


## Caller

通用组件Caller通信客户端调用接口, 用来向通用组件服务端发送约定数据。

## Caller.call

D
dy_study 已提交
349
call(method: string, data: rpc.Parcelable): Promise&lt;void&gt;;
M
m00512953 已提交
350 351 352

向通用组件服务端发送约定序列化数据。

M
m00512953 已提交
353
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
354 355 356

**参数:**

Z
zhongjianfei 已提交
357 358 359
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 约定的服务端注册事件字符串。 |
D
dy_study 已提交
360
| data | [rpc.Parcelable](js-apis-rpc.md#parcelable9) | 是 | 由开发者实现的Parcelable可序列化数据。 |
M
m00512953 已提交
361 362 363

**返回值:**

Z
zhongjianfei 已提交
364 365 366
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | Promise形式返回应答。 |
M
m00512953 已提交
367 368 369 370 371

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
H
huangshiwei 已提交
372 373
| 16200001 | Caller released. The caller has been released. |
| 16200002 | Callee invalid. The callee does not exist. |
374
| 16000050 | Internal error. |
D
donglin 已提交
375 376

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
377 378 379 380

**示例:**
    
  ```ts
D
dy_study 已提交
381
  class MyMessageAble{ // 自定义的Parcelable数据结构
M
mingxihua 已提交
382 383
    name:''
    str:''
M
m00512953 已提交
384 385 386 387 388
    num: 1
    constructor(name, str) {
      this.name = name;
      this.str = str;
    }
D
dy_study 已提交
389 390 391
    marshalling(messageSequence) {
      messageSequence.writeInt(this.num);
      messageSequence.writeString(this.str);
M
mingxihua 已提交
392
      console.log('MyMessageAble marshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
393 394
      return true;
    }
D
dy_study 已提交
395 396 397
    unmarshalling(messageSequence) {
      this.num = messageSequence.readInt();
      this.str = messageSequence.readString();
M
mingxihua 已提交
398
      console.log('MyMessageAble unmarshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
399 400 401
      return true;
    }
  };
M
mingxihua 已提交
402 403
  let method = 'call_Function'; // 约定的通知消息字符串
  let caller;
Z
zhongjianfei 已提交
404
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
405
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
406
      this.context.startAbilityByCall({
M
mingxihua 已提交
407 408 409
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
410 411
      }).then((obj) => {
        caller = obj;
412
        let msg = new MyMessageAble('msg', 'world'); // 参考Parcelable数据定义
M
m00512953 已提交
413 414 415 416 417
        caller.call(method, msg)
          .then(() => {
            console.log('Caller call() called');
          })
          .catch((callErr) => {
Z
zhoujun62 已提交
418
            console.log('Caller.call catch error, error.code: ${callErr.code}, error.message: ${callErr.message}');
M
m00512953 已提交
419 420
          });
      }).catch((err) => {
Z
zhoujun62 已提交
421
        console.log('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
M
m00512953 已提交
422 423 424 425 426 427 428 429
      });
    }
  }
  ```


## Caller.callWithResult

D
dy_study 已提交
430
callWithResult(method: string, data: rpc.Parcelable): Promise&lt;rpc.MessageSequence&gt;;
M
m00512953 已提交
431 432 433

向通用组件服务端发送约定序列化数据, 并将服务端返回的约定序列化数据带回。

M
m00512953 已提交
434
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
435 436 437

**参数:**

Z
zhongjianfei 已提交
438 439 440
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 约定的服务端注册事件字符串。 |
D
dy_study 已提交
441
| data | [rpc.Parcelable](js-apis-rpc.md#parcelable9) | 是 | 由开发者实现的Parcelable可序列化数据。 |
M
m00512953 已提交
442 443 444

**返回值:**

Z
zhongjianfei 已提交
445 446
| 类型 | 说明 |
| -------- | -------- |
D
dy_study 已提交
447
| Promise&lt;[rpc.MessageSequence](js-apis-rpc.md#messagesequence9)&gt; | Promise形式返回通用组件服务端应答数据。 |
M
m00512953 已提交
448 449 450 451 452

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
H
huangshiwei 已提交
453 454
| 16200001 | Caller released. The caller has been released. |
| 16200002 | Callee invalid. The callee does not exist. |
455
| 16000050 | Internal error. |
D
donglin 已提交
456 457

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
458 459 460 461 462

**示例:**

  ```ts
  class MyMessageAble{
M
mingxihua 已提交
463 464
    name:''
    str:''
M
m00512953 已提交
465 466 467 468 469
    num: 1
    constructor(name, str) {
      this.name = name;
      this.str = str;
    }
D
dy_study 已提交
470 471 472
    marshalling(messageSequence) {
      messageSequence.writeInt(this.num);
      messageSequence.writeString(this.str);
M
mingxihua 已提交
473
      console.log('MyMessageAble marshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
474 475
      return true;
    }
D
dy_study 已提交
476 477 478
    unmarshalling(messageSequence) {
      this.num = messageSequence.readInt();
      this.str = messageSequence.readString();
M
mingxihua 已提交
479
      console.log('MyMessageAble unmarshalling num[${this.num] str[${this.str}]');
M
m00512953 已提交
480 481 482
      return true;
    }
  };
M
mingxihua 已提交
483 484
  let method = 'call_Function';
  let caller;
Z
zhongjianfei 已提交
485
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
486
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
487
      this.context.startAbilityByCall({
M
mingxihua 已提交
488 489 490
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
491 492
      }).then((obj) => {
        caller = obj;
M
mingxihua 已提交
493
        let msg = new MyMessageAble(1, 'world');
M
m00512953 已提交
494 495 496
        caller.callWithResult(method, msg)
          .then((data) => {
            console.log('Caller callWithResult() called');
M
mingxihua 已提交
497
            let retmsg = new MyMessageAble(0, '');
D
dy_study 已提交
498
            data.readParcelable(retmsg);
M
m00512953 已提交
499 500
          })
          .catch((callErr) => {
Z
zhoujun62 已提交
501
            console.log('Caller.callWithResult catch error, error.code: ${callErr.code}, error.message: ${callErr.message}');
M
m00512953 已提交
502 503
          });
      }).catch((err) => {
Z
zhoujun62 已提交
504
        console.log('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
M
m00512953 已提交
505 506 507 508 509 510 511 512 513 514 515 516
      });
    }
  }
  ```


## Caller.release

release(): void;

主动释放通用组件服务端的通信接口。

M
m00512953 已提交
517
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
518 519 520 521 522 523 524

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 16200001 | Caller released. The caller has been released. |
| 16200002 | Callee invalid. The callee does not exist. |
H
huangshiwei 已提交
525 526

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
527 528 529 530

**示例:**
    
  ```ts
M
mingxihua 已提交
531
  let caller;
Z
zhongjianfei 已提交
532
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
533
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
534
      this.context.startAbilityByCall({
M
mingxihua 已提交
535 536 537
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
538 539 540 541 542
      }).then((obj) => {
        caller = obj;
        try {
          caller.release();
        } catch (releaseErr) {
Z
zhoujun62 已提交
543
          console.log('Caller.release catch error, error.code: ${releaseErr.code}, error.message: ${releaseErr.message}');
M
m00512953 已提交
544 545
        }
      }).catch((err) => {
Z
zhoujun62 已提交
546
        console.log('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
M
m00512953 已提交
547 548 549 550 551
      });
    }
  }
  ```

D
ability  
donglin 已提交
552 553
## Caller.onRelease

M
mingxihua 已提交
554
 onRelease(callback: OnReleaseCallback): void;
D
ability  
donglin 已提交
555 556 557

注册通用组件服务端Stub(桩)断开监听通知。

M
m00512953 已提交
558
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
D
ability  
donglin 已提交
559

H
huangshiwei 已提交
560 561 562 563 564 565 566 567
**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 16200001 | Caller released. The caller has been released. |

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)

D
ability  
donglin 已提交
568 569
**参数:**

Z
zhongjianfei 已提交
570 571
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
mingxihua 已提交
572
| callback | [OnReleaseCallback](#onreleasecallback) | 是 | 返回onRelease回调结果。 |
D
ability  
donglin 已提交
573 574 575 576

**示例:**
    
  ```ts
M
mingxihua 已提交
577
  let caller;
Z
zhongjianfei 已提交
578
  export default class MainUIAbility extends UIAbility {
D
ability  
donglin 已提交
579
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
580
      this.context.startAbilityByCall({
M
mingxihua 已提交
581 582 583
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
D
ability  
donglin 已提交
584 585 586 587
      }).then((obj) => {
          caller = obj;
          try {
            caller.onRelease((str) => {
M
mingxihua 已提交
588
                console.log(' Caller OnRelease CallBack is called ${str}');
D
ability  
donglin 已提交
589 590
            });
          } catch (error) {
Z
zhoujun62 已提交
591
            console.log('Caller.onRelease catch error, error.code: $error.code}, error.message: ${error.message}');
D
ability  
donglin 已提交
592 593
          }
      }).catch((err) => {
Z
zhoujun62 已提交
594
        console.log('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
D
ability  
donglin 已提交
595 596 597 598
      });
    }
  }
  ```
M
m00512953 已提交
599

600
## Caller.onRemoteStateChange<sup>10+</sup>
601

602
onRemoteStateChange(callback: OnRemoteStateChangeCallback): void;
603 604 605 606 607 608 609 610 611 612 613

注册协同场景下跨设备组件状态变化监听通知。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | [OnRemoteStateChangeCallback](#onremotestatechangecallback) | 是 | 返回onRemoteStateChange回调结果。 |

H
huangshiwei 已提交
614 615 616 617 618 619 620 621
**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 16200001 | Caller released. The caller has been released. |

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)

622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
**示例:**
    
  ```ts
  import UIAbility from '@ohos.app.ability.UIAbility';

  let caller;
  let dstDeviceId: string;
  export default class MainAbility extends UIAbility {
      onWindowStageCreate(windowStage: Window.WindowStage) {
          this.context.startAbilityByCall({
              bundleName: 'com.example.myservice',
              abilityName: 'MainUIAbility',
              deviceId: dstDeviceId
          }).then((obj) => {
              caller = obj;
              try {
                  caller.onRemoteStateChange((str) => {
                      console.log('Remote state changed ' + str);
                  });
              } catch (error) {
                  console.log('Caller.onRemoteStateChange catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
              }
          }).catch((err) => {
              console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
          })
      }
  }
  ```

M
m00512953 已提交
651 652
## Caller.on

653
on(type: 'release', callback: OnReleaseCallback): void;
M
m00512953 已提交
654 655 656

注册通用组件服务端Stub(桩)断开监听通知。

M
m00512953 已提交
657
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
658 659 660

**参数:**

Z
zhongjianfei 已提交
661 662 663
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| type | string | 是 | 监听releaseCall事件,固定为'release'。 |
M
mingxihua 已提交
664
| callback | [OnReleaseCallback](#onreleasecallback) | 是 | 返回onRelease回调结果。 |
M
m00512953 已提交
665 666 667 668 669

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
670
| 401 | If the input parameter is not valid parameter. |
H
huangshiwei 已提交
671
| 16200001 | Caller released. The caller has been released. |
D
donglin 已提交
672 673

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
674 675 676 677

**示例:**
    
  ```ts
M
mingxihua 已提交
678
  let caller;
Z
zhongjianfei 已提交
679
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
680
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
681
      this.context.startAbilityByCall({
M
mingxihua 已提交
682 683 684
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
685 686 687
      }).then((obj) => {
          caller = obj;
          try {
M
mingxihua 已提交
688
            caller.on('release', (str) => {
M
mingxihua 已提交
689
                console.log(' Caller OnRelease CallBack is called ${str}');
M
m00512953 已提交
690 691
            });
          } catch (error) {
Z
zhoujun62 已提交
692
            console.log('Caller.on catch error, error.code: ${error.code}, error.message: ${error.message}');
M
m00512953 已提交
693 694
          }
      }).catch((err) => {
Z
zhoujun62 已提交
695
        console.log('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
M
m00512953 已提交
696 697 698 699 700
      });
    }
  }
  ```

M
mingxihua 已提交
701 702
## Caller.off

M
mingxihua 已提交
703
off(type: 'release', callback: OnReleaseCallback): void;
M
mingxihua 已提交
704 705 706 707 708 709 710 711 712 713

取消注册通用组件服务端Stub(桩)断开监听通知。预留能力,当前暂未支持。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| type | string | 是 | 监听releaseCall事件,固定为'release'。 |
M
mingxihua 已提交
714
| callback | [OnReleaseCallback](#onreleasecallback) | 是 | 返回off回调结果。 |
M
mingxihua 已提交
715

716 717 718 719 720 721
**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 401 | If the input parameter is not valid parameter. |

M
mingxihua 已提交
722 723 724
**示例:**
    
  ```ts
M
mingxihua 已提交
725
  let caller;
M
mingxihua 已提交
726 727 728
  export default class MainUIAbility extends UIAbility {
    onWindowStageCreate(windowStage) {
      this.context.startAbilityByCall({
M
mingxihua 已提交
729 730 731
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
mingxihua 已提交
732 733 734 735
      }).then((obj) => {
          caller = obj;
          try {
            let onReleaseCallBack = (str) => {
M
mingxihua 已提交
736
                console.log(' Caller OnRelease CallBack is called ${str}');
M
mingxihua 已提交
737
            };
M
mingxihua 已提交
738 739
            caller.on('release', onReleaseCallBack);
            caller.off('release', onReleaseCallBack);
M
mingxihua 已提交
740
          } catch (error) {
Z
zhoujun62 已提交
741
            console.log('Caller.on or Caller.off catch error, error.code: ${error.code}, error.message: ${error.message}');
M
mingxihua 已提交
742 743
          }
      }).catch((err) => {
Z
zhoujun62 已提交
744
        console.log('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
M
mingxihua 已提交
745 746 747 748 749 750 751
      });
    }
  }
  ```

## Caller.off

M
mingxihua 已提交
752
off(type: 'release'): void;
M
mingxihua 已提交
753 754 755 756 757 758 759 760 761 762 763 764 765 766

取消注册通用组件服务端Stub(桩)断开监听通知。预留能力,当前暂未支持。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| type | string | 是 | 监听releaseCall事件,固定为'release'。 |

**示例:**
    
  ```ts
M
mingxihua 已提交
767
  let caller;
M
mingxihua 已提交
768 769 770
  export default class MainUIAbility extends UIAbility {
    onWindowStageCreate(windowStage) {
      this.context.startAbilityByCall({
M
mingxihua 已提交
771 772 773
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
mingxihua 已提交
774 775 776 777
      }).then((obj) => {
          caller = obj;
          try {
            let onReleaseCallBack = (str) => {
M
mingxihua 已提交
778
                console.log(' Caller OnRelease CallBack is called ${str}');
M
mingxihua 已提交
779
            };
M
mingxihua 已提交
780 781
            caller.on('release', onReleaseCallBack);
            caller.off('release');
M
mingxihua 已提交
782
          } catch (error) {  
Z
zhoujun62 已提交
783
            console.error('Caller.on or Caller.off catch error, error.code: ${error.code}, error.message: ${error.message}');
M
mingxihua 已提交
784 785
          }
      }).catch((err) => {
Z
zhoujun62 已提交
786
        console.error('Caller GetCaller error, error.code: ${err.code}, error.message: ${err.message}');
M
mingxihua 已提交
787 788 789 790
      });
    }
  }
  ```
M
m00512953 已提交
791 792 793 794 795 796 797

## Callee

通用组件服务端注册和解除客户端caller通知送信的callback接口。

## Callee.on

D
merge  
donglin 已提交
798
on(method: string, callback: CalleeCallback): void;
M
m00512953 已提交
799 800 801

通用组件服务端注册消息通知callback。

M
m00512953 已提交
802
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
803 804 805

**参数:**

Z
zhongjianfei 已提交
806 807 808
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 与客户端约定的通知消息字符串。 |
D
dy_study 已提交
809
| callback | [CalleeCallback](#calleecallback) | 是 | 一个[rpc.MessageSequence](js-apis-rpc.md#messagesequence9)类型入参的js通知同步回调函数,&nbsp;回调函数至少要返回一个空的[rpc.Parcelable](js-apis-rpc.md#parcelable9)数据对象,&nbsp;其他视为函数执行错误。 |
M
m00512953 已提交
810 811 812 813 814

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
H
huangshiwei 已提交
815 816
| 16200004 | Method registered. The method has registered. |
| 16000050 | Internal error. |
D
donglin 已提交
817 818

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
819 820 821 822 823

**示例:**

  ```ts
  class MyMessageAble{
M
mingxihua 已提交
824 825
      name:''
      str:''
M
m00512953 已提交
826 827 828 829 830
      num: 1
      constructor(name, str) {
        this.name = name;
        this.str = str;
      }
D
dy_study 已提交
831 832 833
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
M
mingxihua 已提交
834
          console.log('MyMessageAble marshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
835 836
          return true;
      }
D
dy_study 已提交
837 838 839
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
M
mingxihua 已提交
840
          console.log('MyMessageAble unmarshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
841 842 843
          return true;
      }
  };
M
mingxihua 已提交
844
  let method = 'call_Function';
M
m00512953 已提交
845
  function funcCallBack(pdata) {
M
mingxihua 已提交
846
      console.log('Callee funcCallBack is called ${pdata}');
M
mingxihua 已提交
847
      let msg = new MyMessageAble('test', '');
D
dy_study 已提交
848
      pdata.readParcelable(msg);
M
mingxihua 已提交
849
      return new MyMessageAble('test1', 'Callee test');
M
m00512953 已提交
850
  }
Z
zhongjianfei 已提交
851
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
852 853 854 855 856
    onCreate(want, launchParam) {
      console.log('Callee onCreate is called');
      try {
        this.callee.on(method, funcCallBack);
      } catch (error) {
Z
zhoujun62 已提交
857
        console.log('Callee.on catch error, error.code: ${error.code}, error.message: ${error.message}');
M
m00512953 已提交
858 859 860 861 862 863 864 865 866 867 868
      }
    }
  }
  ```

## Callee.off

off(method: string): void;

解除通用组件服务端注册消息通知callback。

M
m00512953 已提交
869
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
870 871 872

**参数:**

Z
zhongjianfei 已提交
873 874 875
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 已注册的通知事件字符串。 |
M
m00512953 已提交
876 877 878 879 880

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
H
huangshiwei 已提交
881 882
| 16200005 | Method not registered. The method has not registered. |
| 16000050 | Internal error. |
D
donglin 已提交
883 884

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
885 886 887 888 889


**示例:**
    
  ```ts
M
mingxihua 已提交
890
  let method = 'call_Function';
Z
zhongjianfei 已提交
891
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
892 893 894 895 896
    onCreate(want, launchParam) {
      console.log('Callee onCreate is called');
      try {
        this.callee.off(method);
      } catch (error) {
Z
zhoujun62 已提交
897
        console.log('Callee.off catch error, error.code: ${error.code}, error.message: ${error.message}');
M
m00512953 已提交
898 899 900 901 902 903 904 905 906
      }
    }
  }
  ```

## OnReleaseCallback

(msg: string): void;

M
m00512953 已提交
907
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
908

Z
zhongjianfei 已提交
909
| 名称 | 可读 | 可写 | 类型 | 说明 |
M
m00512953 已提交
910
| -------- | -------- | -------- | -------- | -------- |
Z
zhongjianfei 已提交
911
| (msg: string) | 是 | 否 | function | 调用者注册的侦听器函数接口的原型。 |
M
m00512953 已提交
912

913
## OnRemoteStateChangeCallback<sup>10+</sup>
914 915 916 917 918 919 920 921 922

(msg: string): void;

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

| 名称 | 可读 | 可写 | 类型 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| (msg: string) | 是 | 否 | function | 调用者注册的协同场景下组件状态变化监听函数接口的原型。 |

M
m00512953 已提交
923 924
## CalleeCallback

D
dy_study 已提交
925
(indata: rpc.MessageSequence): rpc.Parcelable;
M
m00512953 已提交
926

M
m00512953 已提交
927
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
928

Z
zhongjianfei 已提交
929
| 名称 | 可读 | 可写 | 类型 | 说明 |
M
m00512953 已提交
930
| -------- | -------- | -------- | -------- | -------- |
D
dy_study 已提交
931
| (indata: [rpc.MessageSequence](js-apis-rpc.md#messagesequence9)) | 是 | 否 | [rpc.Parcelable](js-apis-rpc.md#parcelable9) | 被调用方注册的消息侦听器函数接口的原型。 |