- 获取当前的地理位置(wx.getLocation)接口申请一直不通过,请问具体原因是什么?
您好, 场景1:该小程序首页要根据用户当前位置经纬度,转换成汉字地址;并且数据是根据用户的位置显示不同区域的商品 场景2:填写收货地址,程序是想自动显示用户当前位置 这两个场景都需要用到wx.getLocation接口,但是一直审核不过,麻烦官方大牛给看看什么原因,已经提审了很多次了,场景,图片、视频都上传了
2022-08-22 - 官方文档打不开?
https://developers.weixin.qq.com/miniprogram/analysis/custom/ 官方文档的这个链接进不去404,我们现在的项目有一个数据分析的需求,想借助自定义事件看官方是否提供一些对接api的文档
2022-07-19 - wx.openDocument(Object object),ios打开报错,android没问题?
[图片] let that = this; let reqUrl = app.globalData.api + '/file/getOrderFile.do'; wx.downloadFile({ url: reqUrl, success (res) { const filePath = res.tempFilePath; if (res.statusCode === 200) { wx.saveFile({ tempFilePath: res.tempFilePath, success (res) { console.log(res) const savedFilePath = res.savedFilePath wx.openDocument({ fileType: 'xlsx', showMenu:true, filePath: savedFilePath, success: function (res) { console.log(res) } }) } }) } } }) 在开发工具也能打开,只有ios报这个错误,我这个let reqUrl = app.globalData.api + '/file/getOrderFile.do'; 是后端返回的一个文件流。求解答
2020-07-03