json 불러와서 적용하기2
페이지 정보
본문
/* 아래 소스로 하면 실시간으로 json을 불러오는 것이 안됨. 캐시화해서 그런가봄.
var now_Time = new Date();
let jsonhttp = new XMLHttpRequest();
jsonhttp.open("GET", "https://curri.kr/data_APP/canvas/json/"+note_id+".json?ver=1234s", true);
// jsonhttp.setRequestHeader("Content-type", "application/json");
jsonhttp.onreadystatechange = function() {
if(this.readyState == 4 && this.status == 200) { // this.readyState == 4 : 데이터를 전부 받은 상태,완료되었다는 뜻 // this.status == 200 : 서버로부터의 응답상태가 요청에 성공하였다는 의미
strokeHistory = JSON.parse(this.response);
redraw();
}
};
jsonhttp.send();
- 이전글jquery drag & drop 23.10.29
- 다음글json 불러와서 적용하기 23.08.21
댓글목록
등록된 댓글이 없습니다.