安卓手机系统版本是5.1,使用的是Oppo R9手机。
代码片段:
wx.ready(() => {
this.loading();
wx.getLocation({
type: ‘gcj02’,
success: function (res) {
console.log(‘come in getLocation success’);
}.bind(this),
cancel: function (res) {
console.log(‘come in getLocation cancel’);
this.loading(false);
callback(`${config.url}/0/0`);
}.bind(this),
fail:function (res) {
console.log(‘come in getLocation fail’);
this.loading(false);
callback(`${config.url}/-1/-1`);
}.bind(this),
});
});