配置

image.png

小程序调用

SDK 调用

  1. WXAPI.wxpayIPaynow({
  2. token,
  3. money,
  4. remark,
  5. content,
  6. nextAction,
  7. payName
  8. })

具体参数说明,请参阅接口文档说明

自己调用接口

具体参阅接口文档

https://api.it120.cc/doc.html#/%E5%89%8D%E7%AB%AFapi%E6%8E%A5%E5%8F%A3%E6%96%87%E6%A1%A3/%E5%9C%A8%E7%BA%BF%E6%94%AF%E4%BB%98/wxappUsingPOST_32

content 参数特别说明

该支付必须传 content 参数(商品列表,Json格式),参考如下:

  1. [
  2. {
  3. "goods_name": "iphone6s",
  4. "quantity": 1
  5. },
  6. {
  7. "goods_name": "iphone5s",
  8. "quantity": 2
  9. }
  10. ]

需要指明本次支付的商品名称和数量