0
我在我的應用程序組件中有這兩個方法,我想使用getLocation來設置緯度和經度,然後我想調用getWeather方法。這兩個方法,我會像在componentDidMounth如何在componentDidMount中調用兩個異步方法?
getLocation: function() {
if(navigator.geolocation){
navigator.geolocation.getCurrentPosition(
function(position){
this.setState({
location: position
});
}.bind(this)
);
}
}
和
getWeather: function() {
let latitude =48.1568806; //just for test
let longitude =17.0739704; //just for test
$.ajax({
url:`http://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&APPID=${this.state.key}`,
dataType: 'json',
async: true,
cache: false,
success: function(data){
this.setState({weather: data})
}.bind(this),
error: function(e){
console.log(e);
}
});
},
打電話,但我需要等待的getLocation。
我該如何處理?
你能提供你的代碼?有幾種方法可以做到這一點,帶回調,承諾 –
向我們展示功能! – Pogrindis
我加了我的代碼 – Grund