$.ajax({
url:"http://localhost:8080/city/weixin/test",
dataType:"json",
ata:{"url":window.location.href},
success:function(res){
//var appId = res.appId;
var nonceStr= res.noncestr; // 必填,生成签名的随机串
var signature = res.signature;// 必填,签名,见附录1
var jsApiList = res.jsApiList;
var timestamp = res.timestamp;
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: 'wxedbb112316546445464',
timestamp:timestamp , // 必填,生成签名的时间戳
nonceStr: nonceStr, // 必填,生成签名的随机串
signature: signature,// 必填,签名,见附录1
jsApiList: ["scanQRCode"] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
});
wx.ready(function() {
wx.scanQRCode({
needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
scanType: ["qrCode","barCode"], // 可以指定扫二维码还是一维码,默认二者都有
success: function (res) {
var result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
console.log(result);
}
});
});
},
error : function(xhr, erroType, error, msg){
alert("失败");
}
})
js调用微信api中的扫一扫
最新推荐文章于 2024-09-30 15:31:18 发布