Reactjs에서 axios를 사용하여 날씨 API에서 데이터 가져오기
3124 단어 reactaxiosjavascripthooks
터미널에서 명령 사용:
npx create-react-app weather
그런 다음 axios를 설치하십시오.
npm i axios
useState()는 반응형 기능 구성 요소의 후크입니다.
useState를 사용하면 두 값의 배열을 반환합니다. 첫 번째 값은 초기 상태이고 두 번째 값은 값을 업데이트하는 함수입니다.
다음을 사용하여 useState를 가져올 수 있습니다.
import {useState} from react
또는const[value, setValue] = React.useState(initialstate)
import React from 'react'
import { useState } from 'react'
import "./style/Weather.css"
import axios from 'axios'
function App() {
const [weather, setWeather] = useState('');
const [city, setCity] = useState('');
const apiKey = process.env.REACT_APP_APIKEY;
const apiCall = async (e) => {
e.preventDefault()
const loc = e.target.elements.loc.value
const url = `https://api.openweathermap.org/data/2.5/weather?q=${loc}&appid=${apiKey}`;
const req = axios.get(url);
const res = await req;
setWeather({
descp: res.data.weather[0].description,
temp: res.data.main.temp,
city: res.data.name,
humidity: res.data.main.humidity,
press: res.data.main.pressure,
})
setCity(res.data.name)
}
//Converting K to C
let k = weather.temp;
let C = k - 273.15
const Weath = () => {
return <div>
<div className="winfo">
Weather information for {city}
<hr></hr>
</div>
<div className="Weath">
<div className="welement">
Weather : {weather.descp}
</div>
<div className="welement">
Temperature : {C.toFixed(2)} ℃
</div>
<div className="welement">
Humidity :{weather.humidity} %
</div>
<div className="welement">
Pressure : {weather.press} mb
</div>
</div>
</div>
}
return (<>
<div className="weathhead">Weather Info</div>
<div className="mainweather">
<div className="weather">
<form onSubmit={apiCall} className="form">
<input type="text"
placeholder="city"
name="loc" />
<button className="bttn">Search</button>
</form>
{weather && <Weath />}
</div>
</div>
</>
)
}
export default App
깃허브: https://github.com/sandyabhi/kitrgh/blob/master/src/Weather.js
Reference
이 문제에 관하여(Reactjs에서 axios를 사용하여 날씨 API에서 데이터 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sandyabhi/fetching-data-from-weather-api-using-axios-in-reactjs-2bpg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)