- wx.getLocation的success不会执行
https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.openLocation.html 昨天还可以的,今天就一直在showLoading,可以执行complete,success和fail都不会执行。(上面微信版本是随便填的,基础库版本从2.11到2.13都试了) getLocation(){ var page=this wx.showLoading({ title: '自动获取定位中...' }) wx.getLocation({ type: 'gcj02', //返回可以用于wx.openLocation的经纬度 success: function(res) { wx.hideLoading() var latitude = res.latitude var longitude = res.longitude page.setData({ lat:latitude, lng:longitude }) page.loadCity(latitude,longitude); } }) },
2020-11-03 - 小程序配置服务器域名后一直在刷新?
小程序配置了服务器域名以后也刷新了,确实不报错了,但是一直在发请求,就像是卡在这里了: [图片] [图片] [图片]
2020-09-23 - 使用navigator时设置hover-class为class同名类,跳转后返回,样式全部失效
https://developers.weixin.qq.com/miniprogram/dev/component/navigator.html
2020-07-17