wx.getLocation API cancel方法不起作用
wx.getLocation({
type: ‘wgs84’, // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
success: function(res){
// success
},
cancel:function(){
that.setData({
notGet:false
})
},
fail: function() {
// fail
},
complete: function() {
// complete
},
})
中的cancel方法不起作用
是否有其他替代的方法?