У меня проблемы с получением таблицы JSON для прогноза на 5 дней.
<div class="grid-container">
<div class="city-search">Search For A City:
<input type="text" id="cityInput" style="text-transform: uppercase" />
<button class="searchBtn" type="submit"><span class="oi oi-magnifying-glass"></span></button>
</div>
Вот мой JQuery
var apiFore = 'https://api.openweathermap.org/data/2.5/forecast?q=' + cityName + '&appid='+{appid};
$.getJSON(apiFore, weatherForecast);
function weatherForecast(foreData) {
console.log("5-day: " + foreData.list.main.temp);
};
Это то, что я получить в консоли, независимо от того, какой элемент JSON я пытаюсь вытащить