代码是这样的
wx.chooseWXPay({
timestamp:res.data.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
nonceStr: res.data.nonceStr, // 支付签名随机串,不长于 32 位
package:res.data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
signType:res.data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
paySign: res.data.paySign, // 支付签名
success: function (result) {
$(".shadow").hide();
$(".payType").hide();
$.toast('支付成功');
location.href="{php echo $this->createMobileUrl('index',array('op'=>'order_service'))}";
},
fail: function (result) {
alert(2)
$.alert('fail : ' + result);
},
complete: function (result) {
alert(result.errMsg)
debugger
isLoading=false;
}
});