vue使用微信扫一扫功能的实现代码
程序员文章站
2022-05-27 18:50:38
第一步: 安装weixin-js-sdk 和 jquery 包 npm install weixin-js-sdk jquery第二部: 配置wx.config (配置都是后端返回来的,菜鸟前端只需要...
第一步: 安装weixin-js-sdk 和 jquery 包 npm install weixin-js-sdk jquery
第二部: 配置wx.config
(配置都是后端返回来的,菜鸟前端只需要按需传值过去就可)
代码如下
import wx from “weixin-js-sdk”; import $ from “jquery”; gosao() { //这里【url参数一定是去参的本网址】,请求后端接口换取signature //(兼容安卓和ios) let url = "传值"; let ua = navigator.useragent.tolowercase(); if (/iphone|ipad|ipod/.test(ua)) { this.newurl = window.location.href.split("#")[0]; } else if (/android/.test(ua)) { this.newurl = window.location.href; } //传值为了去掉# $.get(`后台需要的路径=${this.newurl}`, function(response) { wx.config({ // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 debug: false, // 必填,公众号的唯一标识 appid: response.data.appid, // 必填,生成签名的时间戳 timestamp: response.data.timestamp, // 必填,生成签名的随机串 noncestr: response.data.noncestr, // 必填,签名 signature: response.data.signature, // 必填,需要使用的js接口列表,所有js接口列表 jsapilist: ["scanqrcode"] }); console.log(response) } ); wx.error(function(res) { alert("出错了:" + res.errmsg); //这个地方的好处就是wx.config配置错误,会弹出窗口哪里错误,然后根据微信文档查询即可。 }); let _t = this wx.ready(function () { wx.checkjsapi({ jsapilist: ['scanqrcode'], success: function (res) { } }); wx.scanqrcode({ needresult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果, scantype: ["qrcode"], // 可以指定扫二维码还是一维码,默认二者都有 success: async (res)=>{ var result = res.resultstr; // 当needresult 为 1 时,扫码返回的结果 alert(result ) } }); }); },
已测,可以使用
注:只能微信浏览器使用,其他浏览器不可
总结
到此这篇关于vue使用微信扫一扫功能的实现代码的文章就介绍到这了,更多相关vue 微信扫一扫内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!