- 微信小程序中使用 wx.getLocation({})获取地理位置?
1、比如:用户使用小程序A,在北京市,第一次进入小程序A,此时获取到的地理位置是 北京市; 2、当此用户,在没有删除手机中 微信小程序列表中的,小程序A时;到广东省旅游,此时打开小程序A,wx.getLocation({})返回的依然是北京市;在onShow() 里面调用的 wx.getLocation({})
2020-06-19 - 第二项目总是崩溃
刚更新的网页版 微信小程序开发工具,打开第一个没问题,同时打开两个项目时,第二项目总是崩溃
2020-04-28 - saveImageToPhotosAlbum 保存网络图片时无法保存?
相关代码如下: saveQrCode(){ // 保存二维码 let that = this; wx.showActionSheet({ itemList: ['保存图片'], success: function (res) { console.log(res.tapIndex) if (res.tapIndex == 0) { console.log('qrcode:', qrcode); wx.getSetting({ success(res) { wx.showModal({ title: 'getSetting', content: JSON.stringify(res), success(res) { if (res.confirm) { console.log('用户点击确定') } } }) console.log('getSetting res:', res); if (res.authSetting['scope.userInfo'] || res.authSetting['scope.userLocation'] ||res.authSetting['scope.writePhotosAlbum'] ) { console.log('授权成功') wx.downloadFile({ url: that.data.qrURLSave, //仅为示例,并非真实的资源 success(res) { // 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容 wx.showModal({ title: 'downloadFile success', content: JSON.stringify(res), success(res) { if (res.confirm) { console.log('用户点击确定') } } }) if (res.statusCode == 200) { wx.showModal({ title: 'statusCode == 200', content: 'JSON.stringify(res)', success(res) { if (res.confirm) { console.log('用户点击确定') } } }) wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success(saveRes) { that.setData({ showQr: false }); wx.showToast({ title: '已保存至相册', }) } }) } } }) } }) } } }) } } }) } } }) },
2019-12-10 - 在手机端浏览器中(如:UC、QQ)非微信浏览器,打开H5网页,如何唤起手机中的微信授权登录?
1、在手机端打开H5网页; 2、非微信内置浏览器(不是在微信内打开,不是在微信内打开,不是在微信内打开。) 3、如何唤起手机内微信授权登录H5网页 4、手机端手机端;;不是PC端应用的
2019-11-29 - 微信小程序中,安卓手机上视频可以播放,苹果手机上视频不能播放,该如何解决?
视频地址:https://lvyou.cxzjzg.com/tourismprogram/userfiles/1/files/videos/videos/2019/11/%E6%B3%B0%E5%9B%BD.mp4
2019-11-11