wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: res.data.rtnData.appId, // 必填,公众号的唯一标识 timestamp: res.data.rtnData.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.rtnData.nonceStr, // 必填,生成签名的随机串 signature: res.data.rtnData.signature,// 必填,签名 jsApiList: ['getLocation'] // 必填,需要使用的JS接口列表 }); wx.ready(function(){ wx.getLocation({ type: 'gcj02', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' success: function (res) { }, fail: function (res) { } }) });
ios 微信pc wx.getLocation 不会成功也不会失败?iOS 微信的pc端为什么wx.getLocation不会返回成功也不会返回失败,就一直死在那里,Windows下的pc微信没有问题,至少会进失败
4小时前requestPluginPayment:fail callMiniProgramFunction:fail File not found 报了这个错用的基础库是3.1.5
插件中支付可以在开发版调起吗?[图片]这样写对吗,我在开发工具中调起是失败的,需要发版以后才可以调起吗,还是写的有问题
2023-11-07