지창언

Merge branch 'to_mod_wea_api' into 'master'

error definition..

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

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