系统12.3.1,微信版本7.0.5
H5页面调用微信的扫一扫,苹果手机调不起来,什么原因?H5页面无法调起微信扫一扫,安卓机正常, 苹果手机报错。以下是苹果机的报错顺序,最后一张是安卓手机,一切正常,求解 mounted () { const that = this this.getList() that.$http.post(that.API.getJsSDKApi, { 'url': window.location.href }, (res) => { if (res.data.ret_code === '00') { wx.config({ debug: false, // 开启调试模式, appId: res.data.appId, // 必填,企业号的唯一标识,此处填写企业号corpid timestamp: res.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.nonceStr, // 必填,生成签名的随机串 signature: res.data.signature, // 必填,签名,见附录1 jsApiList: ['scanQRCode'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }) } else { that.$util.errorToast(res.data.ret_msg) } }) } scaneCode () { const that = this wx.ready(function () { wx.scanQRCode({ needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果, scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是一维码,默认二者都有 success: function (res) { var result = res.resultStr // 当needResult 为 1 时,扫码返回的结果 console.log(res) let params = {opType: 'add', result} alert(result) // that.$router.push({path: '/speaker_set', query: { boxMsg: encodeURIComponent(JSON.stringify(params)) }}) } }) }) }[图片] [图片] [图片][图片]
2019-09-25啥也没有
H5调不起微信扫一扫?H5页面无法调起微信扫一扫,有谁知道原因吗?求解。以下是部分代码 mounted () { const that = this this.getList() that.$http.post(that.API.getJsSDKApi, { 'url': window.location.href }, (res) => { if (res.data.ret_code === '00') { wx.config({ debug: false, // 开启调试模式, appId: res.data.appId, // 必填,企业号的唯一标识,此处填写企业号corpid timestamp: res.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.nonceStr, // 必填,生成签名的随机串 signature: res.data.signature, // 必填,签名,见附录1 jsApiList: ['scanQRCode'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }) } else { that.$util.errorToast(res.data.ret_msg) } }) } scaneCode () { const that = this wx.ready(function () { wx.scanQRCode({ needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果, scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是一维码,默认二者都有 success: function (res) { var result = res.resultStr // 当needResult 为 1 时,扫码返回的结果 console.log(res) let params = {opType: 'add', result} alert(result) // that.$router.push({path: '/speaker_set', query: { boxMsg: encodeURIComponent(JSON.stringify(params)) }}) } }) }) }
2019-09-24确实不能,我又去确认了一遍,其实是个H5页面,然后所以有转发的朋友圈的选项,打扰了
小程序转发到朋友圈请问小程序能分享到朋友圈吗?就是点击按钮,底部弹出分享到朋友圈,好友等选项,刚刚看到一个去哪儿小程序好像实现了那个功能,不知道咋实现的。有做过的朋友吗。
2019-01-17换成scroll-view就没问题了
onReachBottom苹果手机下滑不触发onReachBottom事件,无法实现分页,请问大家有碰到类似的问题吗。
2019-01-16嗯嗯,后台只给链接,二维码由前端转。
求一个能在微信小程序中生成二维码的库现在有一个需求就是用户可以在小程序中查看二维码,后台传入一个链接给前端,需要前端将它转为二维码,有推荐的方法吗。
2018-11-05好的吧,谢谢哈
微信小程序请求方法可以用PATCH方法吗wx.request({ method: "PATCH" }) 这样请求不行,有什么方法解决吗
2018-10-25