날짜: 2024년 12월 18일
날씨 앱을 구축하는 것은 JavaScript, DOM 조작, 이벤트 처리 및 API 통합에 대한 이해를 확고히 하는 훌륭한 방법입니다. 이 프로젝트에서는 API에서 데이터를 가져와 웹페이지에 동적으로 표시하는 방법을 알려드립니다.
프로젝트에 필요한 파일 만들기:
OpenWeatherMap에 가입하고 API 키를 받으세요. API를 사용하여 날씨 데이터를 가져옵니다.
예제 API URL:
https://api.openweathermap.org/data/2.5/weather?q={city}&appid={API_KEY}&units=metric
입력 필드와 날씨 정보를 표시하는 섹션으로 간단한 레이아웃을 만듭니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Weather App</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div> <hr> <h3> <strong>4. Styling (Optional)</strong> </h3> <p>Add some CSS to make your app visually appealing.<br> </p> <pre class="brush:php;toolbar:false">#weather-app { text-align: center; font-family: Arial, sans-serif; margin: 50px auto; width: 300px; } input, button { padding: 10px; margin: 10px 0; } #weather-result { margin-top: 20px; }
JavaScript를 사용하여 사용자 입력을 캡처하고 API에서 데이터를 가져와 결과를 표시합니다.
// JavaScript code for the weather app const API_KEY = "your_api_key_here"; // Replace with your actual API key document.getElementById("search-btn").addEventListener("click", () => { const city = document.getElementById("city-input").value; if (city) { fetchWeather(city); } else { displayError("Please enter a city name."); } }); function fetchWeather(city) { const apiURL = `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${API_KEY}&units=metric`; fetch(apiURL) .then(response => { if (!response.ok) { throw new Error("City not found"); } return response.json(); }) .then(data => displayWeather(data)) .catch(error => displayError(error.message)); } function displayWeather(data) { document.getElementById("error-message").textContent = ""; document.getElementById("city-name").textContent = `Weather in ${data.name}`; document.getElementById("temperature").textContent = `Temperature: ${data.main.temp}°C`; document.getElementById("description").textContent = `Condition: ${data.weather[0].description}`; document.getElementById("humidity").textContent = `Humidity: ${data.main.humidity}%`; } function displayError(message) { document.getElementById("error-message").textContent = message; document.getElementById("city-name").textContent = ""; document.getElementById("temperature").textContent = ""; document.getElementById("description").textContent = ""; document.getElementById("humidity").textContent = ""; }
내 GitHub 저장소를 여기를 클릭하세요
날씨 앱을 구축하려면 다음과 같은 여러 가지 중요한 JavaScript 기술이 통합되어 있어야 합니다.
이 프로젝트를 완료하면 더욱 복잡한 JavaScript 애플리케이션을 구축하는 데 자신감을 갖게 될 것입니다.
다음 단계: 내일은 JavaScript의 오류 처리 및 디버깅에 집중하여 문제를 효과적으로 식별하고 해결하는 기술을 탐구하겠습니다. 계속 지켜봐주세요!
위 내용은 프로젝트: JavaScript와 Weather API를 사용하여 날씨 앱 구축의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!