Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 시스템 파악
- 시스템 파악 정리
- plsql
- 명령어공부
- Law of Demeter
- Bandit Level 6
- 클린코드
- pl/sql
- CSS
- 인증서만료에러
- springboot
- OpenAPI
- 디미터 법칙
- Bandit Level 6 → Level 7
- java.sql.SQLRecoverableException
- 스크럼기법
- 나선형 모형
- 프로토타입 모형
- SQLRecoverableException
- 폭포수 모형
- 커맨드공부
- mysql 튜닝
- 변수명 짓는법
- vue
- 에자일 모형
- table scan
- avax.net.ssl.SSLHandshakeException:
- was버그
- was SQLRecoverableException
- Bandit Level 5
Archives
- Today
- Total
목록node.js 날씨 취득 (1)
개발햄비
[node.js] open API OpenWeatherMap 날씨 얻기
OpenWeatherMap 를 이용한 날씨정보를 가져오는 AP입니다.주소: https://openweathermap.org/ 사용방법:1. 해당 사이트에 가입2. API Key 취득 3. API를 불러오기 여기 나와있는 키를 복사해둡니다. Current Weather Data를 선택합니다.var apiURI ="http://api.openweathermap.org/data/2.5/weather?q= 원하는 지역 &appid= 발급받은 키 " $.ajax({ url : apiURI, method : 'GET', success : (data)=> { var temp = String((data.main.temp - 272)).substring(0,3); // 온도 var location = data.name;..
개발/openApi
2019. 3. 3. 22:16