
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
이상하게 vs에서 live 서버로 페이지를 열때는 온도가 바뀌지만 github를 사용해서 페이지를 열면 온도가 안변합니다.
작성한 코드 및 에러 메세지
<script>
$(document).ready(function () {
fetch("http://spartacodingclub.shop/sparta_api/weather/seoul").then(res => res.json()).then(data => {
let number = data['temp']
$('#temp').text(number)
})
})
</script>
