From 978b30ef29ac486f9bcfa38a6a71a702a8992a56 Mon Sep 17 00:00:00 2001 From: WOSHIMAHAIFENG Date: Thu, 11 Apr 2024 15:49:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=94=AF=E4=BB=98=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/collocation/manifest-modules.md | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/docs/collocation/manifest-modules.md b/docs/collocation/manifest-modules.md index 803c0368..059c6b89 100644 --- a/docs/collocation/manifest-modules.md +++ b/docs/collocation/manifest-modules.md @@ -82,6 +82,10 @@ HBuilderX3.93版本起,编译器支持扫描代码,摇树treeShaking,自 - uni-verify [App一键登陆](../api/get-univerify-manager.md)模块(`HBuilderX3.99+`),包括API:[uni.getUniverifyManager](../api/get-univerify-manager.md#getuniverifymanager)、[UniverifyManager.preLogin](../api/get-univerify-manager.md#prelogin)、[UniverifyManager.login](../api/get-univerify-manager.md#login) 依赖的模块:无 +- uni-payment + uni-payment请求支付模块,包括API:[uni.requestPayment](../api/request-payment.md)
+ 依赖的模块:无 + 注意:此模块仅包含基础支付模块,需手动配置支付方式,详情参考[uni-payment](#uni-payment)章节 再次强调,以上模块不属于ext组件或api,是内置模块。但如果你的代码中没有使用这些组件和api,打正式包或自定义基座时会被摇掉。 @@ -134,3 +138,33 @@ uts插件中暂不支持摇树,如果uts插件中使用了以上模块,需 注意:目前仅支持上述国内广告平台,国际广告暂不支持。 +## uni-payment@uni-payment +> HBuilderX 4.11+ 新增支持 uni-payment 请求支付 + +在uni-app x客户端,uni-payment是一个独立模块。需要开发者在 manifest.json 中手动配置,并提交云端打包后才能生效。 + +使用 uni-payment 模块需在 manifest.json 文件中添加如下配置: + +### 配置支付SDK +在 app -> distribute -> modules 下添加 uni-ad 节点: +```json + modules:{ + "uni-payment":{ + "alipay":{}, + "wxpay":{} + } + } +``` + +其中 uni-payment 下的节点表示要聚合的支付方式: +| 标识 | 支付方式 | +| :- | :- | +| alipay | 支付宝支付 | +| wxpay | 微信支付 | + + +添加相应的节点,云端打包就会将对应的支付 SDK 打包到最终安装包中。 + + + + -- GitLab