dd.device.geolocation.get接口调用
Re回 1楼人在囧途的帖子
目前是,iphone不连接wifi时第二次调用,没有任何返回值,导致onsuccess里的代码不能够执行,有什么办法能够让iphone第二次调用有返回值吗?
第二次调用接口代码
dd.device.geolocation.get({
targetAccuracy : 200,
coordinate : 0,
withReGeocode : true,
onSuccess : function(result) {
alert(JSON.stringify(result));
不执行
},
onFail : function(err) {
alert(JSON.stringify(err));
}
});
赞0
踩0