반응형
카카오맵 API를 연동해서 웹서비스를 개발하다 보면
f12 개발자도구 콘솔창에서 맞닥뜨리게되는 워닝이 있는데
그냥 궁금해서 찾아본 파서 블로킹 경고창에 대한 위험도를 기록해봄
sdk.js?appkey=AppKey&libraries=services:4 A parser-blocking,
cross site (i.e. different eTLD+1) script,
http://t1.daumcdn.net/mapjsapi/js/main/4.4.1/kakao.js, is invoked via document.write.
The network request for this script MAY be blocked by the browser in this or
a future page load due to poor network connectivity.
If blocked in this page load, it will be confirmed in a subsequent console message.
See https://www.chromestatus.com/feature/5718547946799104 for more details.
(가독성을 위해 줄바꿈으로 출력함)
카카오 답변
- 지도가 로드되지 않는게 아니라면, 무시해도 됨
- document.write로 스크립트를 생성하는것은 피하는게 좋다
참고 :
https://devtalk.kakao.com/t/gatsby-map/103810/2
https://devtalk.kakao.com/t/parser-blocking/115430
document.write로 스크립트 렌더링 시 발생하는 문제 관련
https://www.cosmosfarm.com/threads/document/21729
반응형
'웹 > javascript : 활용' 카테고리의 다른 글
[javascript] 카카오맵 지도 API 사용하는법 (1.키 발급) (0) | 2021.11.05 |
---|---|
[javascript] string 문자열 자르기 및 주소 url 인코딩 하는법 (0) | 2021.11.03 |
[javascript] multer.js로 서버에 이미지 업로드하기 (feat. Formdata) (0) | 2021.10.24 |
[javascript] Uncaught DOMException: Failed to read the 'sessionStorage' property from 'Window': Access is denied for this document. (0) | 2021.09.06 |
[javascript] Node.JS mongoDB 연동하기 부터 삭제까지 (0) | 2021.08.26 |
[javascript] node.js POST json 데이터 보내는법 (fetch 사용) (0) | 2021.08.19 |