|
weixin.generatePrepayId({
"body" : "支付案例",
"accessToken" : accessToken,
"feeType" : "1",
"notifyUrl" : notifyUrl,
"totalFee" : "1",
"traceId" : traceID,
"tradeNo" : traceNo
}, function(prepayId) {
weixin.sendPayReq(prepayId, function(message) {
var responseCode = parseInt(message);
if (responseCode === 0) {
alert('支付成功');
} else {
error(message);
}
}, error);
}, error);
}, error);
这是用的支付的代码,所有的步骤都是按照x5默认的教程来的,但是在支付的时候报invalid action错误
|
|