91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序開發之總結支付功能

發布時間:2021-01-21 11:50:07 來源:億速云 閱讀:161 作者:小新 欄目:移動開發

這篇文章主要介紹了微信小程序開發之總結支付功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

微信小程序 支付功能開發錯誤總結

第一個坑,獲取用戶的openid,參數一定要拼在url連接上,否則會報{"errcode":40013,"errmsg":"invalid appid, hints: [ req_id: iil1ba0504ns86 ]"}錯誤

 onLoad: function () {
  var that = this
  wx.login({
   success: function (res) {
    if (res.code) {
     //發起網絡請求
     wx.request({
      url: 'https://api.weixin.qq.com/sns/jscode2session?appid=wxaacf22345345cfc7162fe3&secret=83ebd41c3e6f34a49b3a34578063434548ff3f71&js_code=' + res.code + '&grant_type=authorization_code',
      method: "POST",
      success: function (res) {
       that.setData({
        openid: res.data.openid
       })
      }
     })
    } else {
     console.log('獲取用戶登錄態失敗!' + res.errMsg)
    }
   }
  });
 }

第二個坑,支付統一下單接口,簽名這個坑是比較多人遇到問題的這個是MD5加密經常和簽名工具里面的加密簽名不一樣

簽名加密工具地址:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=20_1

簽名加密的時候要轉成utf-8,加密我用自己的接口進行加密的 digest.update(data.getBytes("utf-8"));

 // 統一下單接口獲取sign(簽名)
 paysignjsapi: function (appid, attach, body, mch_id, nonce_str, notify_url, openid, out_trade_no, spbill_create_ip, total_fee, trade_type, key) {
  var self = this;
  //加密簽名
  wx.request({
   url: 'http://localhost:8080/XinXingWXApi/wxXcxApi/Md5Encrypt.do',
   method: 'GET',
   data: {
    appid: appid,
    attach: attach,
    body: body,
    mch_id: mch_id,
    nonce_str: nonce_str,
    notify_url: notify_url,
    openid: openid,
    out_trade_no: out_trade_no,
    spbill_create_ip: spbill_create_ip,
    total_fee: total_fee,
    trade_type: trade_type,
    key: key
   },
   //統一下單
   success: function (res) {
    var sign = res.data.strMd5
    var formData = "<xml>"
    formData += "<appid>" + appid + "</appid>" //appid 
    formData += "<attach>" + attach + "</attach>" //附加數據 
    formData += "<body>" + body + "</body>"    //標題
    formData += "<mch_id>" + mch_id + "</mch_id>" //商戶號 
    formData += "<nonce_str>" + nonce_str + "</nonce_str>" //隨機字符串,不長于32位。 
    formData += "<notify_url>" + notify_url + "</notify_url>" //異步接收微信支付結果通知的回調地址
    formData += "<openid>" + openid + "</openid>"  //用戶Id
    formData += "<out_trade_no>" + out_trade_no + "</out_trade_no>" //商戶訂單號
    formData += "<spbill_create_ip>" + spbill_create_ip + "</spbill_create_ip>"
    formData += "<total_fee>" + total_fee + "</total_fee>" //金額
    formData += "<trade_type>" + trade_type + "</trade_type>"  //公共號支付
    formData += "<sign>" + sign + "</sign>"//簽名
    formData += "</xml>"

返回數據解析xml

 //請求統一下單接口
    wx.request({
     url: "https://api.mch.weixin.qq.com/pay/unifiedorder",
     method: 'POST',
     data: formData,
     success: function (data) {
      wx.request({
       url: "http://localhost:8080/XinXingWXApi/wxXcxApi/xmlAnalyze.do?strXml=" + data.data,
       method: 'POST',
       success: function (res) {
        var pk = 'prepay_id=' + res.data.prepayId;
        var timeStamp = self.createTimeStamp();
        //獲取支付簽名,并支付
        self.getsignType(appid, timeStamp, nonce_str, pk, "MD5", key);
       }
      })
     }
    })
   }
  });
 }

第三就是調用支付了,這里也有幾個小坑,第一就是appId很多寫成appid就不行了,第二個就是preoatid 的參數格式要寫對prepay_id=wx2017011711060194dccf725232155886323 第三個就是調用支付的時候報支付簽名錯誤,也需要到簽名接口查看簽名是否一致,查看參數是否是對的,調用微信支付的時候必須加上appId

getsignType: function (appid, timeStamp, nonce_str, pk, signType, key) {
  var that = this;
  wx.request({
   url: "http://localhost:8080/XinXingWXApi/wxXcxApi/getSignType.hn",
   method: 'GET',
   data: {
    appId: appid,
    timeStamp: timeStamp,
    nonceStr: nonce_str,
    pk: pk,
    signType: signType,
    key: key
   },
   success: function (res) {
    console.log(res.data.paySign)
    var paySign = res.data.paySign
    //調用微信支付
    wx.requestPayment({
     'appId': appid,
     'timeStamp': timeStamp,
     'nonceStr': nonce_str,
     'package': pk,
     'signType': 'MD5',
     'paySign': paySign,
     'success': function (res) {
      console.log(res);
      console.log('success');
     },
     'fail': function (res) {
      console.log(res);
      console.log('fail');
     },
     'complete': function (res) {
      // console.log(res);
      console.log('complete');
     }
    });
   }
  })
 }

以上就是微信小程序開發之總結支付功能錯誤的詳細內容,更多請關注億速云其它相關文章!

感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信小程序開發之總結支付功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汝城县| 光山县| 莱芜市| 右玉县| 海丰县| 江北区| 道孚县| 孝义市| 吉安县| 同仁县| 法库县| 广元市| 嘉义市| 乐亭县| 百色市| 普定县| 儋州市| 华容县| 马鞍山市| 开封市| 玉田县| 固始县| 阿拉善右旗| 讷河市| 汕尾市| 阿坝| 大城县| 偏关县| 浏阳市| 武邑县| 兴化市| 丹寨县| 北海市| 沅江市| 石台县| 涿州市| 安丘市| 新绛县| 土默特右旗| 东港市| 公主岭市|