Google 地理编码异步方法中的 Firebase 更新

Firebase update in a Google Geocode async method

我正在尝试编写一种方法,在地理编码功能完成后更新我的 Firebase 数据库。我在 Angular2 中编写代码,因此我的 Firebase 数据库在我的构造函数中定义。我知道问题出在异步函数上,但我不确定如何解决这个问题。这是我的代码:

geocoding(callback){
var geocoder = new google.maps.Geocoder();
  geocoder.geocode({'address': this.loc}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      callback([results[0].geometry.location.lat(), results[0].geometry.location.lng()]);
    } else {
      this.lat = 0;
    }
  });  
}

和:

geocode(){
this.geocoding(function(latLng){
  this.db.object('users/' + this.auth.id).update({
    lat: latLng[0],
    lng: latLng[1]
  });
});
}

我知道怎么做了。原来你需要使用承诺,这里是工作代码:

geocode(address){
    return new Promise(function(resolve,reject){
      var geocoder = new google.maps.Geocoder();
        geocoder.geocode({'address': address}, function(results, status) {
          if (status == google.maps.GeocoderStatus.OK) {
            resolve(results);
          } else {
            this.lat = 0;
          }
        });
      });
  }

和:

  this.geocode(this.loc).then(results => {
      this.db.object('users/' + this.auth.id).update({
        lat: results[0].geometry.location.lat(),
        lng: results[0].geometry.location.lng()
      });
    });