success\cancel\fail,都没有任何反应,微信开发工具上没办法模拟,请问怎么办?
function QueryAddress(){
wx.openAddress({
success:function (res) {
// 用户成功拉出地址
alert(res.userName)
},
cancel:function (re) {
console.log(re)
// 用户取消拉出地址
alert(JSON.stringify(re))
},
fail: function (res) {
alert('失败');
alert(JSON.stringify(res));
}
});
}
// QueryAddress()
有解决这个问题的大哥没?指导一下!
试试将调试基础库设置最新
看了您给我的文档。我的情况是没有任何回调反应,没有弹出任何消息,没有弹窗,按说失败也会有回调,可是也没有。谢谢您!
fail: function (res) { alert('失败'); alert(JSON.stringify(res)); }
https://developers.weixin.qq.com/community/develop/doc/000c0e440740d07cb8d97eebb56400?_at=1589004684345