스마트웹앱콘텐츠전문가/자바스크립트

[jquery]ajax 호출시 toLoswercase 오류(e is undefined)

9D4U 2020. 8. 7. 11:56
728x90
반응형

- 환경 : 스프링 시큐리티의 csrf 기능을 사용 중이면서, ajax 통신 시 head에 csrf meta 정보를 넘겨주지 않아서 발생한 오류.


[해결]

head 태그에 csrf 토큰을 추가
예시) thymeleaf 

<meta name="_csrf" th:content="${_scrf.token}"/>
<meta name="_csrf_header" th:content="${_csrf.headerName}"/>
728x90