- 公众号网页开发获取位置API如何使用?
公众号网页开发获取位置API模拟器调试正常,真机只走fail回调和complete回调。真机苹果xs,微信版本8.0.23.手机GPS已开。 wx.getLocation({ type: 'wgs84', // 默认为wgs84的 gps 坐标,如果要返回直接给 openLocation 用的火星坐标,可传入'gcj02' success: function (res) { var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 var speed = res.speed; // 速度,以米/每秒计 var accuracy = res.accuracy; // 位置精度 $("#j").html(latitude); $("#w").html(longitude); console.log(res+"1111"); }, fail:function(res){ $("#j").html(res); console.log(res+"2222"); // wx.closeWindow(); }, complete:function(res){ console.log(res+"3333"); } });
2022-06-21 - 开发标签小程序跳转按钮:<wx-open-launch-weapp>iOS可以,安卓不行?
开发标签小程序跳转按钮:<wx-open-launch-weapp>iOS可以,安卓不行
2020-10-28 - wx.requestSubscribeMessage返回结果里面无法获取带横线ID的结果
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/subscribe-message/wx.requestSubscribeMessage.html
2020-07-30 - wx.uploadFile上传图片问题
现在遇到个问题:我的需求是上传用户提交的文字和图片,但是图片可有可无,当用户没有上传图片的时候,函数报错,有没有大神知道怎么处理图片为空时的情况
2018-11-09 - 关于获取页面参数onload(options)
开发中多遇到onload()参数设置为options 然后获取路径参数信息,但是开发文档为什么是query 参数说明 名称类型说明queryObject打开当前页面路径中的参数
2018-11-08