자바스크립트로 txt파일 읽어오기

2021. 1. 23. 23:35Javascript

                if(boxes == null) {
                    let xhr1 = new XMLHttpRequest();
                    xhr1.responseType = 'text';
                    xhr1.open('GET', "./kor.exp0.box");
                    xhr1.onload = function(e) {
                        boxes = xhr1.responseText.split('\n');
                        $.each(boxes, function(i,box) {
                            boxes[i] = box.split(' ')
                        })

                        makeShapes()
                    }
                    xhr1.send();
                }

'Javascript' 카테고리의 다른 글

canvas 이미지 복사시 고려할 사항  (0) 2021.01.24
XMLHttpRequest 사용시 주의사항  (0) 2021.01.24
canvas size가져오기, resize  (0) 2021.01.23
tiff 파일 브라우져에서 보이기  (0) 2021.01.23
ajax 동기방식 적용  (0) 2021.01.21