那还用 弄吗? 我这真机是可以打开设置的,请问各位
wx.opensetting现在不能用了吗?、一直报错,真机可以,模拟器不行wx.showModal({ title: '定位失败,是否手动开启授权', content: '请点击确定,否则无法获取您的城市信息', success: (res) => { if (res.confirm) { wx.openSetting({ complete: (res) => { if (res.authSetting['scope.userLocation'] == true) { wx.getLocation({ success: (res) => { wx.request({ url: 'https://apis.map.qq.com/ws/geocoder/v1/?location=' + res.latitude + ',' + res.longitude + '&', success: (res) => { this.setData({ city: res.data.result.address_component.city }) }, }) }, fail: (err) => { wx.openSetting({ success: (res) => {}, }) } }) } else if (res.authSetting['scope.userLocation'] == false) { this.setData({ city: '定位失败' }) } }, }) } else { this.setData({ city: '定位失败' }) } } })
2020-12-07可以再具体点描述
微信小程序插件page里的页面如何向小程序传值呢?微信小程序插件page里的页面如何向小程序传值呢?
2020-10-06就是 一个 http 和 https 的问题。 http 不行, https 就可以的~
小程序保存图片到相册,为什么上线后失效了保存1图片到相册功能 wx.saveImageToPhotosAlbum本地,测试版什么的都是成功的,上线正式版后就失效了
2019-08-14