Я изучаю React-native, чтобы создать приложение, и у меня возникли проблемы с кодом.
_open_weather_map.default.fetchForecast не является функцией. (В «_open_weather_map.default.fetchForecast (zip)», «_open_weather_map.default.fetchForecast» не определено)
Я работаю над React-родной версией 0.59.2, android.
и это код open_weather_map.js
function zipUrl(zip){
return '${API_STEM}q=${zip}&units=imperial&APPID=${WETHER_API_KEY}';
}
function fetchForcast(zip){
return fetch(zipUrl(zip))
.then(Response=>Response.json())
.then(responseJSON => {
return {
main: responseJSON.weather[0].main,
description: responseJSON.weather[0].description,
temp: responseJSON.main.temp
};
});
}