小程序插件中发起支付wx.requestPluginPayment

wx.requestPluginPayment(Object object)

插件中发起支付。

基础库 2.22.1 开始支持,低版本需做兼容处理。
以 Promise 风格 调用:不支持
小程序插件:支持,需要小程序基础库版本不低于 2.22.1

参数

Object object

属性 类型 默认值 必填 说明
version string 插件版本,develop:开发版、trial:体验版、release:正式版
fee number 需要显示在页面中的金额,单位为分
paymentArgs Object 任意数据,传递给功能页中的响应函数
currencyType string 需要显示在页面中的货币符号的代码,默认为 CNY
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

Tip

  1. tip: 小程序与插件绑定在同一个open平台账号上且小程序与插件均为open账号的同主体/关联主体时,调用此接口将直接拉起支付收银台。
  2. tip: 这个接口本身可以在开发者工具中使用,但功能页的跳转目前不支持在开发者工具中调试,请在真机上测试。
  3. tip: 跳转支付功能页需要在 <code>app.json 中配置 "functionalPages": true

示例代码

具体用法及参数说明可参考 插件支付文档

wx.requestPluginPayment({
  version: 'release',
  fee: 1,
  paymentArgs: {},
  currencyType: 'CNY',
  success (res) { },
  fail (res) { }
})


分类小程序支付功能相关推荐:

小程序插件中发起支付wx.requestPluginPayment 小程序发起微信支付wx.requestPayment