JS 实现微信扫一扫功能
程序员文章站
2022-08-28 10:47:58
具体代码如下所示:
let para = {
opentoken : token,
currurl : locatio...
具体代码如下所示:
let para = { opentoken : token, currurl : location.href }; $.ajax({ type: "post", url: url, data: para, async: false, datatype: "json", error: function (res) { t.shadeconfig = { isempty: false, d_shade: false }; }, success: function(r) { if (200 == r.status) { var d = r.result; wx.config({ debug : false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appid : d.appid, // 必填,公众号的唯一标识 timestamp : d.timestamp, // 必填,生成签名的时间戳 noncestr : d.noncestr, // 必填,生成签名的随机串 signature : d.signature,// 必填,签名,见附录1 jsapilist : [ 'scanqrcode' ] // 必填,需要使用的js接口列表,所有js接口列表见附录2 }); wx.scanqrcode({ // 默认为0,扫描结果由微信处理,1则直接返回扫描结果 needresult : 1, desc : 'scanqrcode desc', success : function(res) { var codes = res.resultstr; alert("扫码识别到的codes:"+codes); } }); } else { t.shadeconfig = { isempty: false, d_shade: false }; } } });
总结
以上所述是小编给大家介绍的js 实现微信扫一扫功能,希望对大家有所帮助