js-apis-plugincomponent.md 17.8 KB
Newer Older
1 2 3 4 5 6
# @ohos.pluginComponent (PluginComponentManager)

用于给插件组件的使用者请求组件与数据,使用者发送组件模板和数据。如需实现插件模板的显示,请参考[PluginComponent](../arkui-ts/ts-basic-components-plugincomponent.md)

>  **说明:**
>
H
HelloCrease 已提交
7
>  - 本模块首批接口从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
8 9 10

## 导入模块

11
```ts
12
import pluginComponentManager from '@ohos.pluginComponent'
13
import Want from '@ohos.app.ability.Want';
14 15 16 17 18 19 20 21
```

## PluginComponentTemplate

Plugin组件模板参数。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
22 23 24 25
| 参数         | 类型     | 必填   | 描述                     |
| ---------- | ------ | ---- | ---------------------- |
| source     | string | 是    | 组件模板名。                 |
| bundleName | string | 是    | 提供者Ability的bundleName。 |
26 27 28 29 30 31 32 33 34 35 36


## PluginComponentManager

### KVObject

以键值对形式存储信息,符合json格式。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full


H
HelloCrease 已提交
37 38
| 取值范围                  | 说明                   |
| --------------------- | -------------------- |
39
| [key: string]         | 关键字,数据类型为字符串,可取空字符串。 |
H
HelloCrease 已提交
40
| number                | 键值,表示值类型为数字。         |
41
| string                | 键值,表示值类型为字符串,可取空字符串。 |
H
HelloCrease 已提交
42 43 44
| boolean               | 键值,表示值类型为布尔值。        |
| []                    | 键值,可取值为[]。           |
| [KVObject](#kvobject) | 键值,表示值类型为KVObject。   |
45 46 47 48 49 50 51 52 53 54


### PushParameters

用于设置FA模型下使用PluginManager.Push方法时候的需要传递的参数。

**模型约束:** 此接口仅适用于FA模型。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
55 56 57 58 59 60 61
| 名称        | 类型                                  | 必填   | 说明                                       |
| --------- | ----------------------------------- | ---- | ---------------------------------------- |
| want      | [Want](js-apis-application-want.md) | 是    | 组件使用者Ability信息。                          |
| name      | string                              | 是    | 组件名称。                                    |
| data      | [KVObject](#kvobject)               | 是    | 组件数据值。                                   |
| extraData | [KVObject](#kvobject)               | 是    | 附加数据值。                                   |
| jsonPath  | string                              | 否    | 存放模板路径的[external.json](#externaljson文件说明)件的路径。 |
62 63 64 65 66 67 68 69 70 71 72

### PushParameterForStage

用于设置Stage模型下使用PluginManager.Push方法时候的需要传递的参数。

**模型约束:** 此接口仅适用于Stage模型。

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

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
73 74 75 76 77 78 79 80
| 名称        | 类型                                  | 必填   | 说明                                       |
| --------- | ----------------------------------- | ---- | ---------------------------------------- |
| owner     | [Want](js-apis-application-want.md) | 是    | 组件提供方Ability信息。                          |
| target    | [Want](js-apis-application-want.md) | 是    | 组件使用者Ability信息。                          |
| name      | string                              | 是    | 组件名称。                                    |
| data      | [KVObject](#kvobject)               | 是    | 组件数据值。                                   |
| extraData | [KVObject](#kvobject)               | 是    | 附加数据值。                                   |
| jsonPath  | string                              | 否    | 存放模板路径的[external.json](#externaljson文件说明)文件的路径。 |
81 82 83 84 85 86 87 88 89

### RequestParameters

用于设置FA模型下使用PluginManager.Request方法时候的需要传递的参数。

**模型约束:** 此接口仅适用于FA模型。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
90 91 92 93 94 95
| 名称       | 类型                                  | 必填   | 说明                                       |
| -------- | ----------------------------------- | ---- | ---------------------------------------- |
| want     | [Want](js-apis-application-want.md) | 是    | 组件提供者Ability信息。                          |
| name     | string                              | 是    | 请求组件名称。                                  |
| data     | [KVObject](#kvobject)               | 是    | 附加数据。                                    |
| jsonPath | string                              | 否    | 存放模板路径的[external.json](#externaljson文件说明)文件的路径。jsonPath字段不为空或者未设置的时候不触发Request通信。 |
96 97 98 99 100 101 102 103 104 105 106

### RequestParameterForStage

用于设置Stage模型下使用PluginManager.Request方法时候的需要传递的参数。

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

**模型约束:** 此接口仅适用于Stage模型。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
107 108 109 110 111 112 113
| 名称       | 类型                                  | 必填   | 说明                                       |
| -------- | ----------------------------------- | ---- | ---------------------------------------- |
| owner    | [Want](js-apis-application-want.md) | 是    | 组件使用者Ability信息。                          |
| target   | [Want](js-apis-application-want.md) | 是    | 组件提供者Ability信息。                          |
| name     | string                              | 是    | 请求组件名称。                                  |
| data     | [KVObject](#kvobject)               | 是    | 附加数据。                                    |
| jsonPath | string                              | 否    | 存放模板路径的[external.json](#externaljson文件说明)文件的路径。jsonPath字段不为空或者未设置的时候不触发Request通信。 |
114 115 116 117 118 119 120

### RequestCallbackParameters

PluginManager.Request方法时候接收到的回调结果。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
121 122 123 124 125
| 名称                | 类型                                       | 必填   | 说明    |
| ----------------- | ---------------------------------------- | ---- | ----- |
| componentTemplate | [PluginComponentTemplate](#plugincomponenttemplate) | 是    | 组件模板。 |
| data              | [KVObject](#kvobject)                    | 是    | 组件数据。 |
| extraData         | [KVObject](#kvobject)                    | 是    | 附加数据。 |
126 127 128 129 130 131 132

### RequestEventResult

注册Request监听方法后,接受到的请求事件时候回应请求的数据类型。

**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
HelloCrease 已提交
133 134 135 136 137
| 名称        | 类型                    | 必填   | 说明    |
| --------- | --------------------- | ---- | ----- |
| template  | string                | 否    | 组件模板。 |
| data      | [KVObject](#kvobject) | 否    | 组件数据。 |
| extraData | [KVObject](#kvobject) | 否    | 附加数据。 |
138 139 140 141 142 143 144 145 146 147

### OnPushEventCallback

OnPushEventCallback = (source: Want, template: PluginComponentTemplate, data: KVObject,
    extraData: KVObject) => void

对应Push事件的监听回调函数。

**参数:**

H
HelloCrease 已提交
148 149 150 151 152 153
| 参数        | 类型                                       | 必填   | 说明                     |
| --------- | ---------------------------------------- | ---- | ---------------------- |
| source    | [Want](js-apis-application-want.md)      | 是    | Push请求发送方相关信息。         |
| template  | [PluginComponentTemplate](#plugincomponenttemplate) | 是    | Push请求发送方相关信息请求组件模板名称。 |
| data      | [KVObject](#kvobject)                    | 是    | 数据。                    |
| extraData | [KVObject](#kvobject)                    | 是    | 附加数据。                  |
154 155 156

**示例:**

157 158 159 160
```ts
import pluginComponentManager from '@ohos.pluginComponent'
import Want from '@ohos.app.ability.Want';
function onPushListener(source: Want, template: PluginComponentTemplate, data: pluginComponentManager.KVObject, extraData: pluginComponentManager.KVObject) {
Y
yamila 已提交
161 162 163 164 165
  console.log("onPushListener template.source=" + template.source)
  console.log("onPushListener source=" + JSON.stringify(source))
  console.log("onPushListener template=" + JSON.stringify(template))
  console.log("onPushListener data=" + JSON.stringify(data))
  console.log("onPushListener extraData=" + JSON.stringify(extraData))
166 167 168 169 170 171 172 173 174 175 176 177
}
```


### OnRequestEventCallback

OnRequestEventCallback = (source: Want, name: string, data: KVObject) => RequestEventResult

对应request事件的监听回调函数。

**参数:**

H
HelloCrease 已提交
178 179 180 181 182
| 参数        | 类型                                  | 必填   | 说明                |
| --------- | ----------------------------------- | ---- | ----------------- |
| source    | [Want](js-apis-application-want.md) | 是    | request请求发送方相关信息。 |
| name      | string                              | 是    | 模板名称。             |
| extraData | [KVObject](#kvobject)               | 是    | 附加数据。             |
183 184 185

**示例:**

186 187 188 189
```ts
import pluginComponentManager from '@ohos.pluginComponent'
import Want from '@ohos.app.ability.Want';
function onRequestListener(source:Want, name:string, data:pluginComponentManager.KVObject) {
Y
yamila 已提交
190 191 192 193
  console.error("onRequestListener");
  console.log("onRequestListener source=" + JSON.stringify(source));
  console.log("onRequestListener name=" + name);
  console.log("onRequestListener data=" + JSON.stringify(data));
194 195
  let RtnData:Record<string,string|pluginComponentManager.KVObject> = { 'template': "ets/pages/plugin.js", 'data': data }
  return RtnData;
196 197 198 199 200 201 202 203 204 205 206 207
}
```

### push

push(param: PushParameters , callback: AsyncCallback&lt;void&gt;): void

组件提供者向组件使用者主动发送组件与数据。

**模型约束:** 此接口仅适用于FA模型。

**参数:**
H
HelloCrease 已提交
208 209 210 211
| 参数名      | 类型                                | 必填   | 说明           |
| -------- | --------------------------------- | ---- | ------------ |
| param    | [PushParameters](#pushparameters) | 是    | 组件使用者的详细信息。  |
| callback | AsyncCallback&lt;void&gt;         | 是    | 此次接口调用的异步回调。 |
212 213 214

**示例:**

215 216
```ts
import pluginComponentManager from '@ohos.pluginComponent'
217
pluginComponentManager.push(
Y
yamila 已提交
218
  {
219
    want: {
Y
yamila 已提交
220 221
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility",
222 223 224
    },
    name: "plugintemplate",
    data: {
Y
yamila 已提交
225 226
      "key_1": "plugin component test",
      "key_2": 34234
227 228
    },
    extraData: {
Y
yamila 已提交
229
      "extra_str": "this is push event"
230 231
    },
    jsonPath: "",
Y
yamila 已提交
232 233 234 235
  },
  (err, data) => {
    console.log("push_callback: push ok!");
  }
236 237 238 239 240 241 242 243 244 245 246 247 248 249
)
```

### push

push(param: PushParameterForStage, callback: AsyncCallback&lt;void&gt;): void

组件提供者向组件使用者主动发送组件与数据。

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

**模型约束:** 此接口仅适用于Stage模型。

**参数:**
H
HelloCrease 已提交
250 251 252 253
| 参数名      | 类型                                       | 必填   | 说明           |
| -------- | ---------------------------------------- | ---- | ------------ |
| param    | [PushParameterForStage](#pushparameterforstage) | 是    | 组件使用者的详细信息。  |
| callback | AsyncCallback&lt;void&gt;                | 是    | 此次接口调用的异步回调。 |
254 255 256

**示例:**

257 258
```ts
import pluginComponentManager from '@ohos.pluginComponent'
259
pluginComponentManager.push(
Y
yamila 已提交
260 261 262 263 264 265 266 267 268 269 270 271
  {
    owner: {
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility"
    },
    target: {
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility",
    },
    name: "ets/pages/plugin2.js",
    data: {
      "js": "ets/pages/plugin.js",
Y
yamila 已提交
272
      "key_1": 1111, 
Y
yamila 已提交
273 274 275
    },
    extraData: {
      "extra_str": "this is push event"
276
    },
Y
yamila 已提交
277 278 279 280 281 282 283
    jsonPath: "",
  },
  (err, data) => {
    console.log("push_callback:err: ", JSON.stringify(err));
    console.log("push_callback:data: ", JSON.stringify(data));
    console.log("push_callback: push ok!");
  }
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
)
```


### request

request(param: RequestParameters, callback: AsyncCallback&lt;RequestCallbackParameters&gt;): void

组件使用者向组件提供者主动请求组件。

**模型约束:** 此接口仅适用于FA模型。


**参数:**

H
HelloCrease 已提交
299 300 301 302
| 参数名      | 类型                                       | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| param    | [RequestParameters](#requestparameters)  | 是    | 组件模板的详细请求信息。                        |
| callback | AsyncCallback&lt;[RequestCallbackParameters](#requestcallbackparameters)&nbsp;\|&nbsp;void&gt; | 是    | 此次请求的异步回调,&nbsp;通过回调接口的参数返回接受请求的数据。 |
303 304 305

**示例:**

306 307
```ts
import pluginComponentManager from '@ohos.pluginComponent'
308
pluginComponentManager.request(
Y
yamila 已提交
309 310 311 312
  {
    want: {
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility",
313
    },
Y
yamila 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326
    name: "plugintemplate",
    data: {
      "key_1": "plugin component test",
      "key_2": 1111111
    },
    jsonPath: "",
  },
  (err, data) => {
    console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability)
    console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source)
    console.log("request_callback: data=" + JSON.stringify(data.data))
    console.log("request_callback: extraData=" + JSON.stringify(data.extraData))
  }
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
)
```


### request

request(param: RequestParameterForStage, callback: AsyncCallback&lt;RequestCallbackParameters&gt;): void

组件使用者向组件提供者主动请求组件。

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

**模型约束:** 此接口仅适用于Stage模型。

**参数:**

H
HelloCrease 已提交
343 344 345 346
| 参数名      | 类型                                       | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| param    | [RequestParameterForStage](#requestparameterforstage) | 是    | 组件模板的详细请求信息。                        |
| callback | AsyncCallback&lt;[RequestCallbackParameters](#requestcallbackparameters)&nbsp;\|&nbsp;void&gt; | 是    | 此次请求的异步回调,&nbsp;通过回调接口的参数返回接受请求的数据。 |
347 348 349

**示例:**

350 351
```ts
import pluginComponentManager from '@ohos.pluginComponent'
352
pluginComponentManager.request(
Y
yamila 已提交
353 354 355 356 357 358 359 360
  {
    owner: {
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility"
    },
    target: {
      bundleName: "com.example.provider",
      abilityName: "ets/pages/plugin2.js",
361
    },
Y
yamila 已提交
362 363 364 365 366 367 368 369 370 371
    name: "plugintemplate",
    data: {
      "key_1": " myapplication plugin component test",
    },
    jsonPath: "",
  },
  (err, data) => {
    console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability)
    console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source)
  }
372 373 374 375 376 377 378 379 380 381 382
)
```

### on

on(eventType: string, callback: OnPushEventCallback | OnRequestEventCallback ): void

提供者监听"request"类型的事件,给使用者返回通过request接口主动请求的数据;使用者监听"push"类型的事件,接收提供者通过push接口主动推送的数据。

**参数:**

H
HelloCrease 已提交
383 384 385 386
| 参数名       | 类型                                       | 必填   | 说明                                       |
| --------- | ---------------------------------------- | ---- | ---------------------------------------- |
| eventType | string                                   | 是    | 监听的事件类型,&nbsp;可选值为:"push"&nbsp;、"request"。<br/>"push”:指组件提供者向使用者主动推送数据。<br/>"request”:指组件使用者向提供者主动请求数据。 |
| callback  | [OnPushEventCallback](#onpusheventcallback)&nbsp;\|&nbsp;[OnRequestEventCallback](#onrequesteventcallback) | 是    | 对应监听回调,push事件对应回调类型为[OnPushEventCallback](#onpusheventcallback),request事件对应回调类型为[OnRequestEventCallback](#onrequesteventcallback) 。 |
387 388 389

**示例:**

390 391 392 393
```ts
import pluginComponentManager from '@ohos.pluginComponent'
import Want from '@ohos.app.ability.Want';
function onPushListener(source:Want, template:PluginComponentTemplate, data:pluginComponentManager.KVObject, extraData:pluginComponentManager.KVObject) {
394 395 396 397 398 399
  console.log("onPushListener template.source=" + template.source)
  console.log("onPushListener source=" + JSON.stringify(source))
  console.log("onPushListener template=" + JSON.stringify(template))
  console.log("onPushListener data=" + JSON.stringify(data))
  console.log("onPushListener extraData=" + JSON.stringify(extraData))
}
400
function onRequestListener(source:Want, name:string, data:pluginComponentManager.KVObject) {
401 402 403 404
  console.error("onRequestListener");
  console.log("onRequestListener source=" + JSON.stringify(source));
  console.log("onRequestListener name=" + name);
  console.log("onRequestListener data=" + JSON.stringify(data));
405 406
  let RtnData:Record<string,string|pluginComponentManager.KVObject> = { 'template': "ets/pages/plugin.js", 'data': data }
  return RtnData;
407
}
Y
yamila 已提交
408 409
pluginComponentManager.on("push", onPushListener)
pluginComponentManager.on("request", onRequestListener)
410 411 412 413 414 415 416 417 418 419 420 421 422
```

## external.json文件说明

external.json文件由开发者创建。external.json中以键值对形式存放组件名称以及对应模板路径。以组件名称name作为关键字,对应模板路径作为值。

**示例**

```json
{
  "PluginProviderExample": "ets/pages/PluginProviderExample.js",
  "plugintemplate2": "ets/pages/plugintemplate2.js"
}
Y
yamila 已提交
423 424

```