지창언

Merge branch 'to_mod_wea_api' into 'master'

error definition..

0602 // 11:19 기준 .. fetch 데이터 불러오기 불가 ...

See merge request !5
......@@ -205,13 +205,14 @@
}
//fetch
// 아래 fetch 상황 0602일 11:19 분 기준, 데이터 가져올 수 없음..
fetch('http://data.ex.co.kr/openapi/restinfo/restWeatherList?key=6806352377&type=json&sdate='+ date1 +'&stdHour=' + ('0'+ String(time1)).slice(-2)).then(function(response){
//testing
//fetch('http://data.ex.co.kr/openapi/restinfo/restWeatherList?key=test&type=json&sdate='+ "20220316" +'&stdHour='+ ('0'+ String(16)).slice(-2)).then(function(response){
method: 'GET';
body: JSON.stringify(this.obj)
response.text().then(function(text){
console.log(text)
//불필요한 데이터들을 정리하고 split을 이용하여 text data를 array data로 변환
//{}로 구성된 한 세트의 데이터가 어레이의 원소 하나가 되도록 split을 사용
index1=text.indexOf('[')
......