js-apis-inner-application-formExtensionContext.md 12.2 KB
Newer Older
1 2
# FormExtensionContext

Y
yangzk 已提交
3
FormExtensionContext模块是FormExtensionAbility的上下文环境,继承自ExtensionContext。
Y
yuyaozhi 已提交
4

Y
yangzk 已提交
5
FormExtensionContext模块提供FormExtensionAbility具有的接口和能力。
Y
yuyaozhi 已提交
6

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

12 13 14 15
## 导入模块

```ts
import common from '@ohos.app.ability.common';
X
xuzhihao 已提交
16
import Base from '@ohos.base';
17 18
```

19
## FormExtensionContext.startAbility
20 21 22

startAbility(want: Want, callback: AsyncCallback<void>): void

23
拉起一个卡片所属应用的Ability。使用callback异步回调。
24

25
**系统接口**:此接口为系统接口。
26

27
**系统能力**:SystemCapability.Ability.Form
28

29 30 31 32 33 34 35 36 37 38
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500100 | Failed to obtain the configuration information. |
| 16500101 | The application is not a system application. |
| 16501000 | An internal functional error occurred. |
Y
yuyaozhi 已提交
39 40

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
41

42 43 44 45
**参数:**

| 参数名 |                类型               | 必填 |              说明               |
| ------| --------------------------------- | ---- | -------------------------------------- |
M
m00512953 已提交
46
| want| [Want](js-apis-application-want.md) | 是  | 包含bundleName,abilityName以及用户自定参数用于拉起Ability。 |
47
| callback| AsyncCallback<void>       | 是  | 回调函数。当拉起一个卡片所属应用的Ability成功,err为undefined,否则为错误对象。 |
48 49 50

**示例:**

M
m00512953 已提交
51
```ts
Y
yangzk 已提交
52
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
X
xuzhihao 已提交
53
import Want from '@ohos.app.ability.Want';
Y
yangzk 已提交
54 55

export default class MyFormExtensionAbility extends FormExtensionAbility {
X
xuzhihao 已提交
56
  onFormEvent(formId: string, message: string) {
Y
yangzk 已提交
57
    // 当触发卡片message事件时,执行startAbility
X
xuzhihao 已提交
58 59
    console.log(`FormExtensionAbility onFormEvent, formId: ${formId}, message:${message}`);
    let want: Want = {
M
mingxihua 已提交
60 61 62
      deviceId: '',
      bundleName: 'com.example.formstartability',
      abilityName: 'EntryAbility',
Y
yangzk 已提交
63
      parameters: {
M
mingxihua 已提交
64
        'message': message
Y
yangzk 已提交
65 66
      }
    };
X
xuzhihao 已提交
67
    this.context.startAbility(want, (error: Base.BusinessError) => {
Y
yangzk 已提交
68
      if (error) {
M
mingxihua 已提交
69
        console.error('FormExtensionContext startAbility, error:${JSON.stringify(error)}');
Y
yangzk 已提交
70 71 72 73 74 75
      } else {
        console.log('FormExtensionContext startAbility success');
      }
    });
  }
};
76 77
```

78
## FormExtensionContext.startAbility
79 80 81

startAbility(want: Want): Promise<void>

82
拉起一个卡片所属应用的Ability。使用Promise异步回调。
83

84
**系统接口**:此接口为系统接口。
85

86
**系统能力**:SystemCapability.Ability.Form
87

88 89 90 91
**参数:**

| 参数名 |                类型               | 必填 |              说明               |
| ------| --------------------------------- | ---- | -------------------------------------- |
M
m00512953 已提交
92
| want| [Want](js-apis-application-want.md) | 是  | 包含bundleName,abilityName以及用户自定参数用于拉起Ability。 |
93 94 95 96 97

**返回值:**

| 类型          | 说明                                |
| ------------ | ---------------------------------- |
Y
yangzk 已提交
98
| Promise<void> | 无返回结果的Promise对象。 |
99

100 101 102 103 104 105 106 107 108 109
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500100 | Failed to obtain the configuration information. |
| 16500101 | The application is not a system application. |
| 16501000 | An internal functional error occurred. |
Y
yuyaozhi 已提交
110 111

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
112

113 114
**示例:**

M
m00512953 已提交
115
```ts
Y
yangzk 已提交
116
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
X
xuzhihao 已提交
117
import Want from '@ohos.app.ability.Want';
Y
yangzk 已提交
118 119

export default class MyFormExtensionAbility extends FormExtensionAbility {
X
xuzhihao 已提交
120
  onFormEvent(formId: string, message: string) {
Y
yangzk 已提交
121
    // 当触发卡片message事件时,执行startAbility
X
xuzhihao 已提交
122 123
    console.log(`FormExtensionAbility onFormEvent, formId:${formId}, message:${message}`);
    let want: Want = {
M
mingxihua 已提交
124 125 126
      deviceId: '',
      bundleName: 'com.example.formstartability',
      abilityName: 'EntryAbility',
Y
yangzk 已提交
127
      parameters: {
M
mingxihua 已提交
128
        'message': message
Y
yangzk 已提交
129 130 131
      }
    };
    this.context.startAbility(want).then(() => {
M
mingxihua 已提交
132
      console.info('StartAbility Success');
X
xuzhihao 已提交
133
    }).catch((error: Base.BusinessError) => {
M
mingxihua 已提交
134
      console.error('StartAbility failed');
Y
yangzk 已提交
135 136 137
    });
  }
};
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
```

## FormExtensionContext.connectServiceExtensionAbility<sup>10+</sup>

connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;

将一个Ability与服务类型的Ability绑定。

**系统能力**:SystemCapability.Ability.Form

**系统API**: 此接口为系统接口,三方应用不支持调用。

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| want | [Want](js-apis-application-want.md)  | 是 | Want类型参数,传入需要启动的ability的信息,如Ability名称,Bundle名称等。 |
| options | [ConnectOptions](js-apis-inner-ability-connectOptions.md) | 是 | ConnectOptions类型的回调函数,返回服务连接成功、断开或连接失败后的信息。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 返回一个connectId,后续根据此connectId断开连接。 |

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 16000001 | The specified ability does not exist. |
| 16000002 | Incorrect ability type. |
| 16000004 | Can not start invisible component. |
1
Bugfix  
18870373690 已提交
170
| 16000005 | The specified process does not have the permission. |
171 172 173 174 175 176 177 178 179 180 181
| 16000006 | Cross-user operations are not allowed. |
| 16000008 | The crowdtesting application expires. |
| 16000053 | The ability is not on the top of the UI. |
| 16000055 | Installation-free timed out. |
| 16000011 | The context does not exist.        |
| 16000050 | Internal error. |

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

**示例:**

X
xuzhihao 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
```ts
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
import Want from '@ohos.app.ability.Want';
import rpc from '@ohos.rpc';
import common from '@ohos.app.ability.common';

let commRemote: rpc.IRemoteObject | null = null;
export default class MyFormExtensionAbility extends FormExtensionAbility {
  onFormEvent(formId: string, message: string) {
    // 当触发卡片message事件时,执行connectServiceExtensionAbility
    console.log(`FormExtensionAbility onFormEvent, formId:${formId}, message:${message}`);
    let want: Want = {
      deviceId: '',
      bundleName: 'com.example.formstartability',
      abilityName: 'EntryAbility',
      parameters: {
        'message': message
199
      }
X
xuzhihao 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
    };
    let options: common.ConnectOptions = {
      onConnect(elementName, remote) { 
        commRemote = remote; // remote 用于与ServiceExtensionAbility进行通信
        console.log('----------- onConnect -----------'); 
      },
      onDisconnect(elementName) { console.log('----------- onDisconnect -----------') },
      onFailed(code) { console.error('----------- onFailed -----------') }
    };

    let connection: number | null = null;
    try {
      connection = this.context.connectServiceExtensionAbility(want, options);
    } catch (paramError) {
      // 处理入参错误异常
      console.error(`error.code: ${paramError.code}, error.message: ${paramError.message}`);
216
    }
X
xuzhihao 已提交
217 218 219
  }
};
```
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

## FormExtensionContext.disconnectServiceExtensionAbility<sup>10+</sup>

disconnectServiceExtensionAbility(connection: number, callback:AsyncCallback&lt;void&gt;): void;

将一个Ability与绑定的服务类型的Ability解绑,断开连接之后需要将连接成功时返回的remote对象置空。

**系统能力**:SystemCapability.Ability.Form

**系统API**: 此接口为系统接口,三方应用不支持调用。

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| connection | number | 是 | 在connectServiceExtensionAbility中返回的number。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数,返回接口调用是否成功的结果。 |

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 16000011 | The context does not exist.        |
| 16000050 | Internal error. |

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

**示例:**

X
xuzhihao 已提交
249 250 251 252
```ts
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
import rpc from '@ohos.rpc';
import common from '@ohos.app.ability.common';
253

X
xuzhihao 已提交
254 255 256 257 258 259
// commRemote为onConnect回调内返回的remote对象,此处定义为null无任何实际意义,仅作示例
let commRemote: rpc.IRemoteObject | null = null;
export default class MyFormExtensionAbility extends FormExtensionAbility {
  onFormEvent(formId: string, message: string) {
    // 实际使用时,connection为connectServiceExtensionAbility中的返回值,此处定义为1无任何实际意义,仅作示例
    let connection: number = 1;
260

X
xuzhihao 已提交
261 262
    try {
      this.context.disconnectServiceExtensionAbility(connection, (error: Base.BusinessError) => {
263
        commRemote = null;
X
xuzhihao 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276
        if (error.code) {
          // 处理业务逻辑错误
          console.error(
            `disconnectServiceExtensionAbility failed, error.code: ${error.code}, error.message: ${error.message}`);
          return;
        }
        // 执行正常业务
        console.log('disconnectServiceExtensionAbility succeed');
      });
    } catch (paramError) {
      commRemote = null;
      // 处理入参错误异常
      console.error(`error.code: ${paramError.code}, error.message: ${paramError.message}`);
277
    }
X
xuzhihao 已提交
278 279 280
  }
};
```
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314

## FormExtensionContext.disconnectServiceExtensionAbility<sup>10+</sup>

disconnectServiceExtensionAbility(connection: number): Promise&lt;void&gt;;

将一个Ability与绑定的服务类型的Ability解绑,断开连接之后需要将连接成功时返回的remote对象置空(Promise形式返回结果)。

**系统能力**:SystemCapability.Ability.Form

**系统API**: 此接口为系统接口,三方应用不支持调用。

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| connection | number | 是 | 在connectServiceExtensionAbility中返回的number。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | 返回一个Promise,包含接口的结果。 |

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 16000011 | The context does not exist.        |
| 16000050 | Internal error. |

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

**示例:**

X
xuzhihao 已提交
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 341 342 343
```ts
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
import rpc from '@ohos.rpc';
import common from '@ohos.app.ability.common';

// commRemote为onConnect回调内返回的remote对象,此处定义为null无任何实际意义,仅作示例
let commRemote: rpc.IRemoteObject | null = null;
export default class MyFormExtensionAbility extends FormExtensionAbility {
  onFormEvent(formId: string, message: string) {
    // 实际使用时,connection为connectServiceExtensionAbility中的返回值,此处定义为1无任何实际意义,仅作示例
    let connection: number = 1;

    try {
      this.context.disconnectServiceExtensionAbility(connection)
        .then(() => {
          commRemote = null;
          // 执行正常业务
          console.log('disconnectServiceExtensionAbility succeed');
        })
        .catch((error: Base.BusinessError) => {
          commRemote = null;
          // 处理业务逻辑错误
          console.error(
            `disconnectServiceExtensionAbility failed, error.code: ${error.code}, error.message: ${error.message}`);
        });
    } catch (paramError) {
      commRemote = null;
      // 处理入参错误异常
      console.error(`error.code: ${paramError.code}, error.message: ${paramError.message}`);
344
    }
X
xuzhihao 已提交
345 346 347
  }
};
```