# cordova.plugin.wxpay.lwking **Repository Path**: lwking/cordova.plugin.wxpay ## Basic Information - **Project Name**: cordova.plugin.wxpay.lwking - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2018-08-10 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # cordova.plugin.wxpay cordova 微信支付插件 ```npm cordova plugin add cordova.plugin.wxpay.lwking --variable WXAPPID=公众账号ID cordova plugin add https://gitee.com/lwking/cordova.plugin.wxpay.git --variable WXAPPID=公众账号ID ``` ## Example ```js cordova.plugins.WXpay.pay(data,(s)=>{ //成功 },(e)=>{ //失败 });   ``` ```js # data参数说明:格式为JSON格式 { appid: 公众账号ID, mch_id: 商户号, prepay_id: 预支付交易会话ID, nonce_str: 随机字符串, timestamp: 时间戳, sign: 签名 } ```