wx.openLocation点击自带的返回键2次才能退出?
wx.config({
debug: false,
appId: xx,
timestamp:res.data.timestamp ,
nonceStr: res.data.nonceStr,
signature: res.data.signature,
jsApiList: ["openLocation"]
});
wx.ready(function () {
wx.openLocation({
longitude: parseFloat(params.longitude),
latitude:parseFloat(params.latitude),
name: params.name,
address: params.address
})
});
wx.error(function(res){
console.log("err:"+res);
});
3 回复
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)