블로그를 이전하였습니다. 2023년 11월부터 https://bluemiv.github.io/에서 블로그를 운영하려고 합니다. 앞으로 해당 블로그의 댓글은 읽지 못할 수 도 있으니 양해바랍니다.
반응형
Uncaught TypeError: $.ajax is not a function 오류
용량을 줄이려고 slim 빌드 jQuery
를 사용했었는데, slim 빌드를 사용하게되면, $.ajax()
를 사용할 수 없다.
<script src="https://code.jquery.com/jquery-3.5.1.slim.js"></script>
구글에 검색해본 결과, stack overflow
에서 아래 글을 찾았다.
그래서, 아래와 같이 slim을 뺀 빌드 버전으로하면 해결된다.
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
Reference
stackoverflow.com/questions/18271251/typeerror-ajax-is-not-a-function
반응형
'Frontend' 카테고리의 다른 글
이미지 포맷 종류(jpg, jpeg, png, gif, svg) (0) | 2021.12.16 |
---|---|
세션(Session)과 쿠키(Cookie🍪) (0) | 2021.03.25 |
REST API와 GET, POST, PUT, DELETE 통신에 대해 (2) | 2020.12.11 |
RESTful API 개념 정리 (0) | 2020.09.08 |
SPA (Single Page Application) 이란 무엇인가? (0) | 2020.05.14 |