本篇文章為大家展示了微信小程序與webview交互實現(xiàn)支付功能,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
成都創(chuàng)新互聯(lián)專注于網(wǎng)站建設|成都網(wǎng)站維護|優(yōu)化|托管以及網(wǎng)絡推廣,積累了大量的網(wǎng)站設計與制作經(jīng)驗,為許多企業(yè)提供了網(wǎng)站定制設計服務,案例作品覆蓋發(fā)電機維修等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結合品牌形象的塑造,量身定制品質網(wǎng)站。
實現(xiàn)原理:點擊h6網(wǎng)頁的支付按鈕——(跳轉)——>嵌套改h6的小程序的支付頁面——(處理支付)——>跳轉至支付完成后的頁面
注意:(1)網(wǎng)頁h6中,引入微信的jssdk
(2)小程序嵌套h6頁面后,需要在微信公眾平臺配置h6網(wǎng)頁的業(yè)務邏輯名,否則無法訪問(且配置業(yè)務邏輯名的小程序只能是企業(yè)小程序,個人小程序暫時無法實現(xiàn))。
操作:登錄微信公眾平臺————開發(fā)——————開發(fā)設置
小程序目錄
//pages/lnyc2019/index.wxml//pages/lnyc2019/index.js Page({ data: { url:'https://xxxxxxxx/wxmini/index.html'//h6地址 } })
// pages/wxPay/index.js Page({ data: { payTempcode:'', ordercode:'', payParam:{} }, onLoad: function (options) { console.log('支付開始'); console.log(options); this.setData({ ordercode: options.ordercode }); this.getTempcode(); }, // 換取支付臨時code getTempcode:function(){ wx.login({ success: res => { // 發(fā)送 res.code 到后臺換取 openId, sessionKey, unionId this.setData({ payTempcode:res.code }); console.log('支付code:', this.data.payTempcode); this.getPayinfo(); } }) }, // 換取支付參數(shù) getPayinfo:function(){ var self=this; wx.request({ url: 'https://xxxxxx/pay/xcxpay',//后臺接口地址 data: { 'wxcode': self.data.payTempcode, 'ordercode': self.data.ordercode, 'gid': x, }, method: 'POST', success: function (res) { console.log(res.data.data.payinfo); self.setData({ payParam: res.data.data.payinfo }); console.log('支付的訂單====',self.data.ordercode); // 調起支付 wx.requestPayment({ 'timeStamp': self.data.payParam.time,//為字符串,否則報錯 'nonceStr': self.data.payParam.nonce_str, 'package': `prepay_id=${self.data.payParam.prepay_id}`, 'signType': 'MD5', 'paySign': self.data.payParam.paysign, 'success': function (res) { console.log(res) console.log('=======支付成功=========='); wx.navigateTo({ url: `/pages/lnyc2019/detail?ordercode=${self.data.ordercode}` }) }, 'fail': function (res) { console.log(res) console.log('=======支付失敗==========') wx.navigateBack({ delta: 1//返回1個頁面 }) } }) } }) } })
上述內容就是微信小程序與webview交互實現(xiàn)支付功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。