js-apis-plugincomponent.md 16.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 12 13 14 15 16 17 18 19 20

## 导入模块

```js
import pluginComponentManager from '@ohos.pluginComponent'
```

## PluginComponentTemplate

Plugin组件模板参数。

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

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


## PluginComponentManager

### KVObject

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

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


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


### PushParameters

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

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

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

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

### PushParameterForStage

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

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

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

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

H
HelloCrease 已提交
72 73 74 75 76 77 78 79
| 名称        | 类型                                  | 必填   | 说明                                       |
| --------- | ----------------------------------- | ---- | ---------------------------------------- |
| 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文件说明)文件的路径。 |
80 81 82 83 84 85 86 87 88

### RequestParameters

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

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

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

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

### RequestParameterForStage

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

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

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

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

H
HelloCrease 已提交
106 107 108 109 110 111 112
| 名称       | 类型                                  | 必填   | 说明                                       |
| -------- | ----------------------------------- | ---- | ---------------------------------------- |
| 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通信。 |
113 114 115 116 117 118 119

### RequestCallbackParameters

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

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

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

### RequestEventResult

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

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

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

### OnPushEventCallback

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

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

**参数:**

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

**示例:**

```js
function onPushListener(source, template, data, extraData) {
Y
yamila 已提交
158 159 160 161 162
  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))
163 164 165 166 167 168 169 170 171 172 173 174
}
```


### OnRequestEventCallback

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

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

**参数:**

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

**示例:**

```js
Y
yamila 已提交
184 185 186 187 188
function onRequestListener(source, name, data) {
  console.error("onRequestListener");
  console.log("onRequestListener source=" + JSON.stringify(source));
  console.log("onRequestListener name=" + name);
  console.log("onRequestListener data=" + JSON.stringify(data));
189

Y
yamila 已提交
190
  return { template: "ets/pages/plugin.js", data: data };
191 192 193 194 195 196 197 198 199 200 201 202
}
```

### push

push(param: PushParameters , callback: AsyncCallback<void>): void

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

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

**参数:**
H
HelloCrease 已提交
203 204 205 206
| 参数名      | 类型                                | 必填   | 说明           |
| -------- | --------------------------------- | ---- | ------------ |
| param    | [PushParameters](#pushparameters) | 是    | 组件使用者的详细信息。  |
| callback | AsyncCallback<void>         | 是    | 此次接口调用的异步回调。 |
207 208 209 210 211

**示例:**

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

### push

push(param: PushParameterForStage, callback: AsyncCallback<void>): void

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

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

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

**参数:**
H
HelloCrease 已提交
244 245 246 247
| 参数名      | 类型                                       | 必填   | 说明           |
| -------- | ---------------------------------------- | ---- | ------------ |
| param    | [PushParameterForStage](#pushparameterforstage) | 是    | 组件使用者的详细信息。  |
| callback | AsyncCallback<void>                | 是    | 此次接口调用的异步回调。 |
248 249 250 251 252

**示例:**

```js
pluginComponentManager.push(
Y
yamila 已提交
253 254 255 256 257 258 259 260 261 262 263 264
  {
    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 已提交
265
      "key_1": 1111, 
Y
yamila 已提交
266 267 268
    },
    extraData: {
      "extra_str": "this is push event"
269
    },
Y
yamila 已提交
270 271 272 273 274 275 276
    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!");
  }
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
)
```


### request

request(param: RequestParameters, callback: AsyncCallback<RequestCallbackParameters>): void

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

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


**参数:**

H
HelloCrease 已提交
292 293 294 295
| 参数名      | 类型                                       | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| param    | [RequestParameters](#requestparameters)  | 是    | 组件模板的详细请求信息。                        |
| callback | AsyncCallback<[RequestCallbackParameters](#requestcallbackparameters) \| void> | 是    | 此次请求的异步回调, 通过回调接口的参数返回接受请求的数据。 |
296 297 298 299 300

**示例:**

```js
pluginComponentManager.request(
Y
yamila 已提交
301 302 303 304
  {
    want: {
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility",
305
    },
Y
yamila 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318
    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))
  }
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
)
```


### request

request(param: RequestParameterForStage, callback: AsyncCallback<RequestCallbackParameters>): void

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

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

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

**参数:**

H
HelloCrease 已提交
335 336 337 338
| 参数名      | 类型                                       | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| param    | [RequestParameterForStage](#requestparameterforstage) | 是    | 组件模板的详细请求信息。                        |
| callback | AsyncCallback<[RequestCallbackParameters](#requestcallbackparameters) \| void> | 是    | 此次请求的异步回调, 通过回调接口的参数返回接受请求的数据。 |
339 340 341 342 343

**示例:**

```js
pluginComponentManager.request(
Y
yamila 已提交
344 345 346 347 348 349 350 351
  {
    owner: {
      bundleName: "com.example.provider",
      abilityName: "com.example.provider.MainAbility"
    },
    target: {
      bundleName: "com.example.provider",
      abilityName: "ets/pages/plugin2.js",
352
    },
Y
yamila 已提交
353 354 355 356 357 358 359 360 361 362
    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)
  }
363 364 365 366 367 368 369 370 371 372 373
)
```

### on

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

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

**参数:**

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

**示例:**

```js
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
function onPushListener(source, template, data, extraData) {
  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))
}
function onRequestListener(source, name, data) {
  console.error("onRequestListener");
  console.log("onRequestListener source=" + JSON.stringify(source));
  console.log("onRequestListener name=" + name);
  console.log("onRequestListener data=" + JSON.stringify(data));

  return { template: "ets/pages/plugin.js", data: data };
}
Y
yamila 已提交
397 398
pluginComponentManager.on("push", onPushListener)
pluginComponentManager.on("request", onRequestListener)
399 400 401 402 403 404 405 406 407 408 409 410 411
```

## external.json文件说明

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

**示例**

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

```