
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
따릉이 openAPI 연습 중인데, 6:57 까지는 잘 따라했다고 생각했는데 왜 업데이트를 눌러도 목록이 안나타날까요ㅠㅠ?
let temp_html = `<tr> ~~~ 전까지는 작동이 잘되는걸 확인했는데 이후에 잘 안되는 것 같아요ㅠㅠ


작성한 코드 및 에러 메세지
<script>
function q1() {
$('#names-q1').empty()
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/sparta_api/seoulbike",
data: {},
success: function (response) {
// console.log(response['getStationList']['row'])
let rows = response['getStationList']['row']
for (let i = 0; i < rows.length; i++) {
let name = rows[i]['stationName']
let rack = rows[i]['rackTotCnt']
let bike = rows[i]['parkingBikeTotCnt']
// console.log(name,rack,bike)
let temp_html = `<tr>
<td>${name}</td>
<td>${rack}</td>
<td>${bike}</td>
</tr>`
$('#names_q1').append(temp_html)
}
}
})
}
</script>
