본문 바로가기
프로그래밍/Web

Mixed content / Failed to load response data... 문제 해결방법

by JR2 2021. 10. 30.

예기치 못한 에러가 발생하였다.

 

우선 크롬의 Network를 들어가서 확인해보니 jqeury-latest.min.js가 제대로 다운로드가 안 되는것 같았다.

사파리는 되고, 로컬로 테스트 했을 때도 됐는데.. 왜 push 후 크롬으로 하니까 안 되는것일까..!

blocked:mixed-content
Failed to load response data : No data found for resource with given identifier

 

blocked:mixed-content

Failed to load response data : No data found for resource with given identifier

 

구글링을 해보니..

http의 보안상 문제 때문에 https를 써야한다고 한다.

그래서 나는 jquery를 호출하는 링크에 s를 살짝쿵 붙혀놓았더니.. 정상동작한다 ㅋㅋㅋ

 

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">

이 소스코드를 맨 위에 붙혀놓아도 된다고 한다.

 

댓글