2016-10-24 9 views
2

Weakmap()を使用しているコントローラでサービスを呼び出そうとしていますが、そのサービスにCannot read property 'getWeather' of undefinedというエラーがあります。以下は私のコードです:ES6を使用したAngularJsのコントローラのサービスコール

私は、あなたの本だと思い
const SERVICE = new WeakMap(); 

export default class WeatherController { 
    constructor(apiService) { 
     SERVICE.set(this, apiService); 

     if (navigator.geolocation) { 
      navigator.geolocation.watchPosition(this.geoSuccess, this.geoFailed); 
     } 
    } 

    geoSuccess(position) { 
     // This gives an error mentioned above 
     SERVICE.get(this).getWeather(position.coords.latitude, position.coords.longitude); 
    } 

    geoFailed(err) { 
     console.log('Error:', err); 
    } 
} 

WeatherController.$inject = ['apiService']; 
+1

可能な重複[正しい\ 'これにアクセスする方法を\ '/コールバック内のコンテキスト?](http://stackoverflow.com/questions/20279484/how-to-access-the-correct-this-context-inside-a-callback) – zeroflagL

答えて

2

- コンテキストがgetSuccessが呼び出されたときに失われている、あなたはこれを試すことがあります。

if (navigator.geolocation) { 
     navigator.geolocation.watchPosition(
      this.geoSuccess.bind(this), 
      this.geoFailed.bind(this) 
     ); 
} 
関連する問題