- 微信小程序获取当前地址的海拔高度?
通过wx.getLocation获取当前的位置,但是返回值中altitude一直显示为0,是什么原因呢? wx.getLocation({ type: 'gcj02', altitude: true, isHighAccuracy:true, success: (res) => { that.setData({ latitude: res.latitude, longitude: res.longitude, speed: res.speed, accuracy: res.accuracy }) qqmapsdk.reverseGeocoder({ location: { latitude: res.latitude, longitude: res.longitude }, success: function (res) { // console.log(res) that.setData({ district:res.result.address_component.district, position:res.result.address_component.street_number }) } }) }, });
2020-07-28 - ts开发微信小程序时的问题?
在app.js的onLunch写的,但是一直提示这个问题[图片] // app.ts App<IAppOption>({ globalData: { localSocket:{} }, onLaunch() { // let that = this // 获取用户信息 wx.getSetting({ success: res => { if (res.authSetting['scope.userInfo']) { // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 wx.getUserInfo({ success: res => { // 可以将 res 发送给后台解码出 unionId this.globalData.userInfo = res.userInfo // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 // if (this.userInfoReadyCallback) { // this.userInfoReadyCallback(res) // } }, }) } }, }) // this.globalData.localSocket let that = this wx.onNetworkStatusChange(function (res) { if (res.isConnected) { that.globalData.localSocket = wx.connectSocket({ url: 'ws://121.40.165.18:8800', header: { 'content-type': 'application/json' }, }) } }); }, })
2020-07-27 - wx.onNetworkStatusChange监听?
wx.onNetworkStatusChange在全局中调用这个方法,但是没有被调用,是什么原因呢,在app.js的onLunch中写的,后来又换到页面中写还是不被调用 wx.onNetworkStatusChange(function (res){ console.log(res) })
2020-07-27 - 微信小程序订阅消息?
当用户勾选“总是保持以上选择,不再询问”时 并且点击了 允许后 收不到订阅消息 是什么原因呢? tmpIds也为accept
2020-07-08 - 微信公众号跳转小程序?
微信公众号的自定义菜单跳转到小程序的登录页面,但是进入这个页面首先要判断是否授权,如果没有授权,跳转到授权页,但是授权之后跳转不回来这个登录页,什么原因呢?
2020-07-02 - 微信小程序页面跳转的问题?
微信小程序wx.redirectTo 体验版可以跳转页面,但是上传到正式版不可以跳转页面,页面也不是TabBar页面,什么原因呢?
2020-07-02 - undefined is not an object?
[图片] 并没有a.data.data... 准确说并没有a这个变量的出现
2020-06-22 - 真机调试undefined?
真机调试一直报错undefined is not an object(evaluating 'a.data.data.id'),但是并没有a.data.data.id
2020-06-22 - 微信小程序页面不跳转?
微信小程序安卓手机跳转页面正常,iPhone不跳转页面,什么原因呢?
2020-06-22 - 你的小程序涉及提供用户自行生成内容的发布/分享/交流服务,请补充选择:社交-社区/论坛类?
1: 你好,你的小程序涉及提供用户自行生成内容的发布/分享/交流服务,请补充选择:社交-社区/论坛类目。 怎么解决呢
2020-06-22