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