sm-ji.log
로그인
sm-ji.log
로그인
[JS] (err) Uncaught TypeError: Failed to construct 'XMLHttpRequest': Please use the 'new' operator, this DOM object constructor cannot be called as a function.
지미미
·
2023년 5월 30일
팔로우
0
0
JavaScript 오류 정리
목록 보기
23/31
Uncaught TypeError: Failed to construct 'XMLHttpRequest': Please use the 'new' operator, this DOM object constructor cannot be called as a function.
오류 발생
let xhr = XMLHttpRequest(); 이렇게 오타를 냈더니..?
원인
객체 혹은 변수를 생성자로 사용하려고 했습니다, 하지만 객체(혹은 변수)가 생성자가 아닙니다.
조치
- 객체를 생성하기 위해 new를 꼭 기입합니다.
-> let xhr = new XMLHttpRequest();
<
br
/>
참고문서
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Errors/Not_a_constructor
지미미
블루라이트로 광합성 하는 새럼
팔로우
이전 포스트
[JS] (err) Failed to load resource: the server responded with a status of 400 (Bad Request).
다음 포스트
[JS] (err) TypeError: a.Jf is not a function.
0개의 댓글
댓글 작성