- 2020年9月24号购买的 [微信OCR识别] 怎么失效了?
[图片] 查不到之前的订单,查不到任何数据,这怎么回事?
2020-09-25 - 微信小程序开发文档中关于map这块属性的几个问题
根据官方文档中map这个组件的描述: https://developers.weixin.qq.com/miniprogram/dev/component/map.html [图片] 案例1:需求是要在地图上标注的几个点来组成一个多边形,代码段如下 js中: data: { ...... polygon: [{ points: [{ latitude: 22.78767, longitude: 108.49895 }, { latitude: 22.78688, longitude: 108.49843 }, { latitude: 22.78681, longitude: 108.49683 }, { latitude: 22.78559, longitude: 108.49494 }, { latitude: 22.78641, longitude: 108.49683 }, { latitude: 22.78616, longitude: 108.49624 }, ], strokeWidth: 10, strokeColor: '#FF6A6A', fillColor: '#FF6A6A99' }], ...... wxml中去设置该属性 <map ...... polygon="{{polygon}}" ...... > ...... </map> 然鹅地图上并没有出现多边形。。。 [图片] 案例2:需要在地图上的某个标记设置一个圆形区域 js中: data: { ...... circle: [{ latitude: 22.78658, longitude: 108.49693, color: '#FF6A6A', fillColor: '#F5F5DC99', radius: 200, strokeWidth: 10 }] wxml中: <map ...... circle="{{circle}}" ...... > ...... </map> 同样的,设置好之后并没有出现这个圆形区域 解决方法,将上述的两个属性名称加上复数s就好了 wxml中: <map ...... polygons="{{polygon}}" circles="{{circle}}" ...... > ...... </map> 修改就显示了 [图片] 为什么微信小程序官方文档到现在还未修正过来?!!!
2020-09-12 - 在小程序工具清理掉所有缓存后再次发起用户授权请求仍然会发生系统错误问题?
/* 获取用户信息 */ wx.getSetting({ success: (res) => { // 如果用户已经授权 scope.userInfo 这个 scope if (res.authSetting['scope.userInfo']) { // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 console.log("用户已授权") wx.getUserInfo({ success: (res) => { console.log("用户信息", res) } } }) } else { // 向用户发起授权请求 console.log('向用户发起授权请求 scope.userInfo') wx.authorize({ scope: 'scope.userInfo', success(suc) { console.log("用户已授权", suc }, fail(err) { console.log("无法授权", err) }, complete(c) { console.log("授权函数执行", c) } }) } } }) 提示如下错误信息 errMsg: "authorize:fail 系统错误,错误码:-12007,scope unauthorized" 截图 [图片] 此时,只能通过用户主动去点击授权按键才会调出授权页面,但是就做不到首次打开小程序主动调出授权页面的要求了
2020-09-03