Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -365,13 +365,14 @@ | ... | @@ -365,13 +365,14 @@ |
365 | } | 365 | } |
366 | 366 | ||
367 | //fetch | 367 | //fetch |
368 | + // 아래 fetch 상황 0602일 11:19 분 기준, 데이터 가져올 수 없음.. | ||
368 | fetch('http://data.ex.co.kr/openapi/restinfo/restWeatherList?key=6806352377&type=json&sdate='+ date1 +'&stdHour=' + ('0'+ String(time1)).slice(-2)).then(function(response){ | 369 | fetch('http://data.ex.co.kr/openapi/restinfo/restWeatherList?key=6806352377&type=json&sdate='+ date1 +'&stdHour=' + ('0'+ String(time1)).slice(-2)).then(function(response){ |
369 | //testing | 370 | //testing |
370 | //fetch('http://data.ex.co.kr/openapi/restinfo/restWeatherList?key=test&type=json&sdate='+ "20220316" +'&stdHour='+ ('0'+ String(16)).slice(-2)).then(function(response){ | 371 | //fetch('http://data.ex.co.kr/openapi/restinfo/restWeatherList?key=test&type=json&sdate='+ "20220316" +'&stdHour='+ ('0'+ String(16)).slice(-2)).then(function(response){ |
371 | method: 'GET'; | 372 | method: 'GET'; |
372 | body: JSON.stringify(this.obj) | 373 | body: JSON.stringify(this.obj) |
373 | response.text().then(function(text){ | 374 | response.text().then(function(text){ |
374 | - | 375 | + console.log(text) |
375 | //불필요한 데이터들을 정리하고 split을 이용하여 text data를 array data로 변환 | 376 | //불필요한 데이터들을 정리하고 split을 이용하여 text data를 array data로 변환 |
376 | //{}로 구성된 한 세트의 데이터가 어레이의 원소 하나가 되도록 split을 사용 | 377 | //{}로 구성된 한 세트의 데이터가 어레이의 원소 하나가 되도록 split을 사용 |
377 | index1=text.indexOf('[') | 378 | index1=text.indexOf('[') | ... | ... |
-
Please register or login to post a comment