- 有没有人遇到过无法下载校验文件的问题?
下载下来一个一个html文件。 无法下载校验文件? - 微信开放社区 https://developers.weixin.qq.com/community/develop/doc/000a6222fa0f903887f15036761400
08-16 - 无法下载校验文件
在配置业务域名的是,下载校验文件,下载下来之后是错误的。下载的是一个html文件 [图片] [图片] 通过浏览器查看是: [图片] 换了浏览器重新登录也不行。 小程序还没审核通过,跟这个有关系?
08-13 - 申请getLocation总是不给过,也不说为啥?
申请getLocation的时候,一直反馈“... 因你所描述的小程序接口使用场景,目前未符合接入wx.getLocation(获取当前的地理位置、速度)接口的开放范围审核不通过,建议修改后重新提交。” 申请理由:“需要查找用户附近的门店位置,通常附近500米,误差100米以内。故需要获取用户所在的精确位置。其次,通过腾讯地图JS api获取省市区也需要此权限” 服务类目也是符合的。 appid: wxacf5db8e2b0ef6a5 [图片] [图片]
05-10 - 文档拼写错误
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/iOS_WKWebview.html 拼写错误。不知道是不是无意的,连续错两次。 [图片]
2023-10-18 - 开发者工具占用cpu特别高,怎么处理?
环境:win10 版本:RC 1.06.2210141 如图: [图片]
2022-11-28 - moveAlong多个同时进行的bug以及相关问题
https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.moveAlong.html moveAlong不持支同时发起多个动画,当有多个marker同时移动时,只有最后一个会动起来。尽管第一个动画已经停止了,但是当最后一个动画结束时,多个complete函数回调会同时调用。complete函数应该是动画播放完成的回调,而文档说的是接口调用成功的回调,这个说法应该是不准确的,一般开发人员理解为只要动画开始播放了就表示接口调用成功了,而非动画结束播放才算接口成功。(success和fail应该也是这样的,没有测试)。autoRotate属性设为true后,并没有根据路径方向自动调整icon角度。测试代码: // 画多条路径和marker drawPolylines (traffic) { let marker = {id:car.id, latitude:car.latitude, longitude: car.longitude} traffic.map(car => { polylines.push({ points: car.points, marker:marker // 关联路径和初始位置marker }); }) // …… } // …… // 动起来 /* this.state.traffic.map((p,i) => { console.log("Moving %d", p.marker.id); this.mapCtx.moveAlong({ markerId: p.marker.id, path: p.points, duration: 20 * 1000, }) }) */ // 测试:先播放第一个marker,总计20秒 let p = this.state.polylines[0]; this.mapCtx.moveAlong({ markerId: p.marker.id, path: p.points, autoRotate: true, duration: 20 * 1000, complete: (res) => { console.debug("move result 1: %o", res); } }) // 3s后,播放第二个marker,总计20秒 setTimeout(() => { p = this.state.polylines[1]; this.mapCtx.moveAlong({ markerId: p.marker.id, path: p.points, autoRotate: true, duration: 20 * 1000, complete: (res) => { console.debug("move result 2: %o", res); } }) }, 3000);
2021-12-10 - 微信公众号用户管理搜索功能不好使了?
在公众号后台的“用户管理”-“已关注”中搜索用户关键词,很多用户,包括很久以前关注的老用户(一说需要两天的时间收录?并不是)均搜不到,不论是中文、英文、大小写还是精确匹配都搜不出来。 [图片] [图片]
2021-10-18