Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
cc56ee11
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
731
Star
38707
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cc56ee11
编写于
3月 10, 2020
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: 小程序插件
上级
590334c9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
76 addition
and
15 deletion
+76
-15
docs/component/_sidebar.md
docs/component/_sidebar.md
+1
-1
docs/component/mp-weixin-plugin.md
docs/component/mp-weixin-plugin.md
+75
-14
未找到文件。
docs/component/_sidebar.md
浏览文件 @
cc56ee11
...
...
@@ -82,7 +82,7 @@
*
[
navigation-bar
](
component/navigation-bar.md
)
*
页面属性配置节点
*
[
page-meta
](
component/page-meta.md
)
*
[
配置
微信
小程序插件
](
component/mp-weixin-plugin.md
)
*
[
配置小程序插件
](
component/mp-weixin-plugin.md
)
*
[
原生组件说明
](
component/native-component.md
)
<div
class=
"contact-box"
>
<a
href=
"//ask.dcloud.net.cn/explore/"
target=
"_blank"
class=
"contact-item"
>
...
...
docs/component/mp-weixin-plugin.md
浏览文件 @
cc56ee11
#### 配置
微信
小程序插件
#### 配置小程序插件
#### 注意事项
小程序插件是可被添加到小程序内直接使用的功能组件,在不同的小程序内叫法可能略有区别。微信小程序、支付宝小程序中叫
`插件`
,百度小程序中叫
`动态库`
,方便起见,以下统一称为插件。
*
正式开始使用微信小程序插件之前需先在微信公众平台 -> 第三方设置 -> 插件管理处添加插件
*
要保证项目内微信小程序appid和申请插件的微信小程序appid一致插件才可使用
**参考文档**
-
[
微信小程序插件
](
https://developers.weixin.qq.com/miniprogram/dev/framework/plugin/using.html
)
-
[
支付宝小程序插件
](
https://opendocs.alipay.com/mini/plugin/plugin-usage
)
-
[
百度小程序动态库
](
https://smartprogram.baidu.com/docs/develop/framework/dynamiclib_use/
)
#### 引入插件代码包
使用插件之前开发者需要在
`
`manifest.json``
中的
``mp-weixin``
内声明使用的插件,具体配置参照所用插件的开发文档
使用插件之前开发者需要在
`
manifest.json`
中的各平台对应的字段
内声明使用的插件,具体配置参照所用插件的开发文档
**代码示例**
```
json
//
微信小程序
"mp-weixin"
:
{
"plugins"
:
{
"myPlugin"
:
{
"version"
:
"1.0.0"
,
"provider"
:
"wxidxxxxxxxxxxxxxxxx"
}
}
}
//
支付宝小程序
"mp-alipay"
:
{
"myPlugin"
:
{
"version"
:
"*"
,
"provider"
:
"2019235609092837"
}
}
//
百度小程序
"mp-baidu"
:
{
"dynamicLib"
:
{
"myPlugin"
:
{
"provider"
:
"TheUniqueNameOwnedByThisDynamicLib"
}
}
}
```
"plugins": {
"pluginName": {
"version": "1.0.0",
"provider": "wxidxxxxxxxxxxxxxxxx"
#### 在页面中使用
在页面内使用插件需要在
`pages.json`
内对应页面的
`style`
节点下配置,示例如下。
以
`"hello-component": "plugin://myPlugin/hello-component"`
为例,
`key`
(冒号前的
`hello-component`
)为在页面内使用的组件名称。
`value`
分为三段,
`plugin`
为协议(在百度小程序内为
`dynamicLib`
),
`myPlugin`
为插件名称即引入插件时的名称,
`hello-component`
为插件暴露的组件名称。
```
json
//
微信小程序
{
"path"
:
"pages/index/index"
,
"style"
:
{
"usingComponents"
:
{
"hello-component"
:
"plugin://myPlugin/hello-component"
}
}
}
//
支付宝小程序
{
"path"
:
"pages/index/index"
,
"style"
:
{
"usingComponents"
:
{
"hello-component"
:
"plugin://myPlugin/hello-component"
}
}
}
//
百度小程序
{
"path"
:
"pages/index/index"
,
"style"
:
{
"usingComponents"
:
{
"my-special-list"
:
"dynamicLib://myDynamicLib/special-list"
}
}
}
```
#### 在分包内引入插件代码包
支付宝小程序、百度小程序不支持在分包内引入插件。此外如果项目使用了分包,在支付宝小程序内不可使用插件。本节内容仅针对微信小程序。
如果插件只在(同一个插件不能被多个分包同时引用)一个分包用到,可以单独配置到分包中,这样插件不会随主包加载,开发者可以在
``pages.json``
的
[
subPackages
](
/collocation/pages?id=subpackages
)
中声明插件
**代码示例**
```
```
json
"subPackages"
:
[{
"root"
:
"pagesA"
,
"pages"
:
[{
...
...
@@ -47,13 +111,10 @@
*
同一个插件不能被多个分包同时引用;
*
不能从分包外的页面直接跳入分包内的插件页面,需要先跳入分包内的非插件页面、再跳入同一分包内的插件页面。
#### 在页面中使用
请参照
[
微信小程序-使用插件
](
https://developers.weixin.qq.com/miniprogram/dev/framework/plugin/using.html
)
#### 可能遇到的问题
*
某些插件可能会需要一些权限才能正常运行,请在
`
`manifest.json``
中的
``mp-weixin``
内配置
``permission`
`
[
详见
](
https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#permission
)
*
某些插件可能会需要一些权限才能正常运行,请在
`
manifest.json`
中的
`mp-weixin`
内配置
`permission
`
[
详见
](
https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#permission
)
*
微信开发工具提示 “插件版本不存在”,可能是插件开发文档示例代码中使用的版本已经不存在,请在声明插件处更改版本
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录