ホームページ > 記事 > ウェブフロントエンド > vue.js を介して WeChat 支払いを実装する
ここで、vue.js WeChat 支払いフロントエンド コードを共有します。非常に良い基準値を持っています。お役に立てれば幸いです。
例は次のとおりです:
onBridgeReady: function () { const openId = localStorage.getItem('openId') payService.payment(this.$route.params.orderId, 1, openId).then(rt => { //1:支付类型,可不填 this.message = rt.t WeixinJSBridge.invoke( 'getBrandWCPayRequest', { 'appId': this.message.appId, 'timeStamp': this.message.timeStamp, 'nonceStr': this.message.nonceStr, 'package': this.message.package, 'signType': this.message.signType, 'paySign': this.message.paySign }, function (res) { console.log(res) if (res.err_msg === 'get_brand_wcpay_request:ok') { Toast('微信支付成功') this.$router.push('/MineOrder') } else if (res.err_msg === 'get_brand_wcpay_request:cancel') { Toast('用户取消支付') // window.location.href = 'gift_failview.do?out_trade_no=' + this.orderId } else if (res.err_msg === 'get_brand_wcpay_request:fail') { Toast('网络异常,请重试') } } ) }) }, callpay: function () { if (typeof WeixinJSBridge === 'undefined') { if (document.addEventListener) { document.addEventListener('WeixinJSBridgeReady', this.onBridgeReady(), false) } else if (document.attachEvent) { document.attachEvent('WeixinJSBridgeReady', this.onBridgeReady()) document.attachEvent('onWeixinJSBridgeReady', this.onBridgeReady()) } } else { this.onBridgeReady() } }
以上は、皆さんのためにまとめたものです。
関連記事:
angularjsでテーブルにtrを追加するメソッドを実装する方法
angularで配列にjsonオブジェクトをプッシュするメソッドの使い方
配列に次のものが含まれているかどうかを確認する方法angularjs の要素
以上がvue.js を介して WeChat 支払いを実装するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。