- 公众号模板跳转小程序只能跳首页,无法获取参数?
前端用mpvue,后端java java模板配置 [图片] 前端代码:可以检测到场景是1043,但是option的参数是首页的 [图片] [图片] 可以看到线上版本测试显示的首页home。
2020-06-08 - 保存图片到本地,调用相册授权,真机中无反应?
savePoster() { console.log("保存图片") console.log(this.poster) //获取相册授权 wx.getSetting({ success(res) { if (!res.authSetting['scope.writePhotosAlbum']) { wx.authorize({ scope: 'scope.writePhotosAlbum', success() { console.log('授权成功') }, fail() { console.log("jjjj") } }) } } }) 这是一部分代码,能打印“保存图片”,但是下面就没执行了,没有打印任何,也没有调取授权,也没有保存图片。 是怎么回事呢?
2020-05-26 - ocr功能识别驾驶证需要的图片是https的,但是用wx.chooseImg返回的是http的图片?
直接看代码 wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album', 'camera'], success(res) { // tempFilePath可以作为img标签的src属性显示图片 const tempFiles = res.tempFiles console.log(tempFiles[0]) wx.serviceMarket.invokeService({ service: 'wx79ac3de8be320b71', // '固定为服务商OCR的appid,非小程序appid', api: 'OcrAllInOne', data: { img_url: tempFiles[0].path, data_type: 3, ocr_type: 4, }, }).then(res => { console.log('invokeService success', res) }).catch(err => { console.error('invokeService fail', err) }) 或者这种方式 wx.request({ url: store.state.url + '/wxshop/horesman/getHoresmanToken', method: 'POST', data: { }, success(res) { console.log(res) wx.request({ url: "https://api.weixin.qq.com/cv/ocr/drivinglicense?img_url="+tempFilePaths[0]+"&access_token="+res.data.data, method: 'POST', data: { }, success(res) { console.log(res) }, fail(error) { console.log(error); } }) }, fail(error) { console.log(error); } }) 我们通过选择本地或者拍摄的图片返回的地址为http地址,我查到的资料显示为ocr功能需要https路径图片,并且路径中不能有端口号,我自己配的图片服务器是带端口号的,会报错, 我在网上找到的图片可以使用,复制网上的图片地址链接可以使用。 可以试一下我服务器的图片,地址是https://www.vaiq.cn:8181/dhn/icon/drive/drive.jpg 图片是网图,就没有打码了 [图片]这是报错,如果真机调试,报的是另一个错,那个错就不贴了。
2020-05-25 - ocr支持的是行驶证还是驾驶证,驾驶证的怎么用
我看文档写只有行驶证,行驶证里面的介绍又写驾驶证,是不是写错了,那驾驶证的怎么通过这个使用
2020-05-23 - wx.openLocation方法,在开发工具中或者真机调试都没有问题,但是发布上线后打不开地图?
let qqMap = new QQMapWX({ key: 'KQ7BZ-ULTE4-OZDUW-DGDUY-6IZKH-XYBI7' // 必填 }); qqMap.geocoder({ address: area, //用户输入的地址(注:地址中请包含城市名称,否则会影响解析效果),如:'北京市海淀区彩和坊路海淀西大街74号' complete: res => { console.log(res.result.location); //经纬度对象 if (res) { that.la = res.result.location.lat; that.ln = res.result.location.lng; this.addressShow = true } else { wx.showToast({ title: '定位出错!', duration: 1000 }); console.log('无法定位到该地址,请确认地址信息!'); } } }); wx.getLocation({ type: 'gcj02', //返回可以用于wx.openLocation的经纬度 success (res) { const latitude = res.latitude const longitude = res.longitude wx.openLocation({ //使用微信内置地图查看位置。 latitude: Number(that.la), //要去的纬度-地址 longitude: Number(that.ln), //要去的经度-地址 name: that.area, address: that.area }) } }) 这是部分代码,在开发工具中,和真机调试中都没有问题,可以打开地图,没有报错,但是发布上线后,点击按钮没有反应,已经试过各种情况,还是解决不了,已经好几天了
2020-04-08 - 小程序订阅消息报43101错误,重新发布更改模板也一样的错误?
第一次订阅消息没问题,可以收到通知。然后点击了总是默认以上操作之后就接收不到消息,所有用户的订阅都失效,都报43101错误。 [图片]
2020-04-07