- wx.authorize在苹果手机上一直103错误,安卓上就不会,不知道怎么原因?
getAuthorize: function () { wx.getSetting({ success: function (res) { if (!res.authSetting['scope.addPhoneContact']) { wx.authorize({ scope: 'scope.addPhoneContact', success: function () { console.log('授权成功'); }, fail: function (err) { console.log('授权失败'); } }) } } }) }, 这样子写应该没错吧?
2023-11-18 - 使用wx.openDocument,需要添加什么 插件么?
文 件打不开 wx.downloadFile({ url: dfile, success: function (res) { console.log("打开"); const filePath = res.tempFilePath wx.openDocument({ filePath: filePath, fileType:fType, showMenu:isdownload, success: function (res) { console.log('打开文档成功'); }, complete:function () { that.setData({ isLoading: false }); console.log('打开完成'); wx.hideLoading(); } }); } })
2023-11-13 - 监听实时地理位置变化事件 onLocationChange一直审核不过,是什么原因呢?
APPId:wx637544a82c528712 onLocationChange一直审核不过,审请好多次了。
2022-06-27