微信支付插件,参考http://wex5.com/
Send WeChat payment request, only test the android version right now. 发起微信支付,目前仅在android 测试通过。
cordova plugin add https://github.com/ZhichengChen/cordova-plugin-wechat-payments
-
访问微信开放平台网站,认证开发者;
-
认证通过之后,创建一个应用,记住你的AppID;
-
应用签名和应用包名填写你所开发的APP 的值,记住它们;
-
申请微信支付能力;
-
申请通过后你会收到一封邮件,内含微信商家平台的账户信息,按照邮件的指示完成商户认证;
-
在这个页面里,点击设置密钥,API密钥的位置填写32 位密钥,记住你的商户ID 和API密钥;
-
打开
plugins/android.json
,将$weixin_api_key 修改成你的 AppID; -
打开
src/android/com/justep/base/Constants.java
, 将 PACKNAME, ACTIVITYCLASSNAME, APPNAME 赋上你的APP 的值,将APPID, PARTNERID, APIKEY 赋值 AppID, 商户ID, API密钥; -
Js 代码
function randomString(len) { var chars = '1234567890'; var maxPos = chars.length; var pwd = ''; for (i = 0; i < len; i++) { pwd += chars.charAt(Math.floor(Math.random() * maxPos)); } return pwd; } function pay() { var weixin = navigator.weixin; var notifyUrl = "http://www.justep.com"; var traceID = randomString(6); var traceNo = randomString(9); weixin.generatePrepayId({ "body" : "x5外卖", "feeType" : "1", "notifyUrl" : notifyUrl, "totalFee" : "1", "traceId" : traceID, "tradeNo" : traceNo }, function(prepayId) { weixin.sendPayReq(prepayId, function(message) { console.log(message); var responseCode = parseInt(message); if (responseCode === 0) { alert("微信支付成功"); } else if (!isNaN(responseCode)) { alert("微信支付失败(-13)"+responseCode); } else { alert("微信支付失败(-10)"); } }, function(message) { alert("微信支付失败(-10)"); }); }, function(message) { console.log(message); alert("微信支付失败(-11)"); } ); }
-
测试时请确包名和上面的值一致,请用你的keystore 打包后在使你的应用拥有正确的签名后在测试;