[태그:] 제이쿼리
-
경고 해결 – [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check https://xhr.spec.whatwg.org/.
jQuery 자바스크립트 작업을 하다보면 다음과 같은 경고를 만나는 경우가 있다. 위 경고는 아래의 코드를 실행했을때 생겼다. 경고가 발생하는 것은 jQuery 가 1.8 버전부터 async 옵션이 폐기(deprecation)되었다. 대신에 jqXHR.done(), jqXHR.fail(), jqXHR.always() 을 사용할 수 있다. jQuery 로 페이지 로딩시 ajax 처리를 하는데 동기적으로 처리해야 되는 상황에서 발생했다. 위와 같은 문제가 발생하는 가장 근본적인 원인은 ajax 를…