js-apis-inner-application-formExtensionContext.md 12.4 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 16 17
## 导入模块

```ts
import common from '@ohos.app.ability.common';
```

18
## FormExtensionContext.startAbility
19 20 21

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

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

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

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

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

| 错误码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 已提交
38 39

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

41 42 43 44
**参数:**

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

**示例:**

M
m00512953 已提交
50
```ts
Y
yangzk 已提交
51
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
X
xuzhihao 已提交
52
import Want from '@ohos.app.ability.Want';
Y
yuyaozhi 已提交
53
import Base from '@ohos.base';
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) {
X
xuzhihao 已提交
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
yuyaozhi 已提交
118
import Base from '@ohos.base';
Y
yangzk 已提交
119 120

export default class MyFormExtensionAbility extends FormExtensionAbility {
X
xuzhihao 已提交
121
  onFormEvent(formId: string, message: string) {
Y
yangzk 已提交
122
    // 当触发卡片message事件时,执行startAbility
X
xuzhihao 已提交
123 124
    console.log(`FormExtensionAbility onFormEvent, formId:${formId}, message:${message}`);
    let want: Want = {
M
mingxihua 已提交
125 126 127
      deviceId: '',
      bundleName: 'com.example.formstartability',
      abilityName: 'EntryAbility',
Y
yangzk 已提交
128
      parameters: {
M
mingxihua 已提交
129
        'message': message
Y
yangzk 已提交
130 131 132
      }
    };
    this.context.startAbility(want).then(() => {
M
mingxihua 已提交
133
      console.info('StartAbility Success');
X
xuzhihao 已提交
134
    }).catch((error: Base.BusinessError) => {
M
mingxihua 已提交
135
      console.error('StartAbility failed');
Y
yangzk 已提交
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 170
```

## 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 已提交
171
| 16000005 | The specified process does not have the permission. |
172 173 174 175 176 177 178 179 180 181 182
| 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 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
```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
200
      }
X
xuzhihao 已提交
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) {
      // 处理入参错误异常
X
xuzhihao 已提交
216
      console.error(`error.code: ${(paramError as Base.BusinessError).code}, error.message: ${(paramError as Base.BusinessError).message}`);
217
    }
X
xuzhihao 已提交
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 249

## 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 已提交
250 251 252 253
```ts
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
import rpc from '@ohos.rpc';
import common from '@ohos.app.ability.common';
Y
yuyaozhi 已提交
254
import Base from '@ohos.base';
255

X
xuzhihao 已提交
256 257 258 259 260 261
// 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;
262

X
xuzhihao 已提交
263 264
    try {
      this.context.disconnectServiceExtensionAbility(connection, (error: Base.BusinessError) => {
265
        commRemote = null;
X
xuzhihao 已提交
266 267 268 269 270 271 272 273 274 275 276 277
        if (error.code) {
          // 处理业务逻辑错误
          console.error(
            `disconnectServiceExtensionAbility failed, error.code: ${error.code}, error.message: ${error.message}`);
          return;
        }
        // 执行正常业务
        console.log('disconnectServiceExtensionAbility succeed');
      });
    } catch (paramError) {
      commRemote = null;
      // 处理入参错误异常
X
xuzhihao 已提交
278
      console.error(`error.code: ${(paramError as Base.BusinessError).code}, error.message: ${(paramError as Base.BusinessError).message}`);
279
    }
X
xuzhihao 已提交
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 315 316

## 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 已提交
317 318 319 320
```ts
import FormExtensionAbility from '@ohos.app.form.FormExtensionAbility';
import rpc from '@ohos.rpc';
import common from '@ohos.app.ability.common';
Y
yuyaozhi 已提交
321
import Base from '@ohos.base';
X
xuzhihao 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345

// 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;
      // 处理入参错误异常
X
xuzhihao 已提交
346
      console.error(`error.code: ${(paramError as Base.BusinessError).code}, error.message: ${(paramError as Base.BusinessError).message}`);
347
    }
X
xuzhihao 已提交
348 349 350
  }
};
```