這篇文章主要介紹了微信小程序開發(fā)之總結支付功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)建站服務項目包括玉泉網(wǎng)站建設、玉泉網(wǎng)站制作、玉泉網(wǎng)頁制作以及玉泉網(wǎng)絡營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯(lián)網(wǎng)行業(yè)的解決方案,玉泉網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務的客戶以成都為中心已經(jīng)輻射到玉泉省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!
微信小程序 支付功能開發(fā)錯誤總結
第一個坑,獲取用戶的openid,參數(shù)一定要拼在url連接上,否則會報{"errcode":40013,"errmsg":"invalid appid, hints: [ req_id: iil1ba0504ns86 ]"}錯誤
onLoad: function () { var that = this wx.login({ success: function (res) { if (res.code) { //發(fā)起網(wǎng)絡請求 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('獲取用戶登錄態(tài)失??!' + res.errMsg) } } }); }
第二個坑,支付統(tǒng)一下單接口,簽名這個坑是比較多人遇到問題的這個是MD5加密經(jīng)常和簽名工具里面的加密簽名不一樣
簽名加密工具地址:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=20_1
簽名加密的時候要轉成utf-8,加密我用自己的接口進行加密的 digest.update(data.getBytes("utf-8"));
// 統(tǒng)一下單接口獲取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 }, //統(tǒng)一下單 success: function (res) { var sign = res.data.strMd5 var formData = "<xml>" formData += "<appid>" + appid + "</appid>" //appid formData += "<attach>" + attach + "</attach>" //附加數(shù)據(jù) 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>" //異步接收微信支付結果通知的回調(diào)地址 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>"
返回數(shù)據(jù)解析xml
//請求統(tǒng)一下單接口 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); } }) } }) } }); }
第三就是調(diào)用支付了,這里也有幾個小坑,第一就是appId很多寫成appid就不行了,第二個就是preoatid 的參數(shù)格式要寫對prepay_id=wx2017011711060194dccf725232155886323 第三個就是調(diào)用支付的時候報支付簽名錯誤,也需要到簽名接口查看簽名是否一致,查看參數(shù)是否是對的,調(diào)用微信支付的時候必須加上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 //調(diào)用微信支付 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'); } }); } }) }
以上就是微信小程序開發(fā)之總結支付功能錯誤的詳細內(nèi)容,更多請關注創(chuàng)新互聯(lián)其它相關文章!
感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信小程序開發(fā)之總結支付功能”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關知識等著你來學習!
網(wǎng)站欄目:微信小程序開發(fā)之總結支付功能
路徑分享:http://jinyejixie.com/article30/ijjppo.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供域名注冊、商城網(wǎng)站、動態(tài)網(wǎng)站、App開發(fā)、網(wǎng)站設計、全網(wǎng)營銷推廣
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)