
아래 입력한 내용에 무엇이 잘못되어 이러한 결과치를 보이는지 도무지 찾을 수 없어 화면 캡처 하여 올립니다.
<script>
function q1() {
fetch("http://spartacodingclub.shop/sparta_api/seoulair").then(res => res.json()).then(data => {
let rows = data['RealtimeCityAir']['row']
$('#names-q1').empty()
rows.forEach((a) => {
let gu_name = a['MSRSTE_NM']
let gu_mise = a['IDEX_MVL']
let temp_html = '<li>${gu_name} : ${gu_mise}</li>'
$('#names-q1').append(temp_html)
})
})
}
</script>

