JavaScript: Uncaught TypeError: $.ajax is not a function
2021. 8. 13. 15:07ㆍ카테고리 없음
- 목차
반응형
jQuery가 수행되지 않는 경우,
$.ajax(....)가 수행되지 않았다. 이에 chrome browser 상에서 F12 -> console로 들어가 log를 확인해보니, 다음과 같이 $.ajax를 찾지 못하는 에러가 발생하고 있었다.
Uncaught TypeError: $.ajax is not a function
이는 jQuery 사용 시 slim build에서는 $.ajax가 정의되어 있지 않기 때문이다.
이에 slim을 빼보았다.
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
이후 $ajax는 수행되는 것을 확인하였다.
반응형