오류
Failed to load resource : the server responded with a status http://127.0.0.1:53265/jquery-1.7.2.js of 404 (Not Found)
오류 상황
canvas 예제를 사용하는데 canvas가 뜨지 않았다
오류 원인
jquery 링크 잘못걸어줘서..
복붙한 source에는 <script type='text/javascript' src = 'jquery-1.7.2.js' ></script> 로 되어있었다.
하지만 나는 jquery 를 다운 받은 적이 없다는 점!!
그러니 당연히 Not found가 뜨지
404가 뜬다면 리소스가 있는지 부터 확인하자!
오류 해결
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
요렇게 내가 하던 방식으로 CDN으로 수정하니까 해결!
※ CDN : Contents Delivery Network
반응형
'오류관리' 카테고리의 다른 글
[ORACLE] ORA-00984 (0) | 2016.04.15 |
---|---|
[Gradle] not found in root project (0) | 2016.04.14 |
[window] an error occurred while attempting to create the directory (0) | 2016.04.05 |
[SPRING]org/springframework/beans/factory/BeanNameAware (0) | 2016.03.31 |
[SPRING]org.xml.sax.SAXParseException (0) | 2016.03.31 |