
보고 계신 화면 전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 상황을 이해할 수 있어요.
아래 그림과 같이 3주차 2장의 복습강의에서 콘솔을 구동하여 확인 하는 과정에서 에러가 나는데 문제점을 못찾겠습니다,

스크립트 코드 부분만 발췌
<script>
$(document).ready(function(){
listing();
});
function listing() {
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/web/api/movie",
data: {},
success: function(response){
let rows = response['movies']
for (let i = 0; i < rows.length; i++) {
let title = rows['i']['title']
let desc = rows['i']['desc']
let image = rows['i']['image']
let star = rows['i']['star']
let comment = rows['i']['comment']
console.log(title, desc, image, star, comment)
}
}
})
}
function open_box(){
$('#post-box').show()
}
function close_box(){
$('#post-box').hide()
}
</script>
콘송화면의 에러메세지
Uncaught TypeError: Cannot read properties of undefined (reading 'title')
at Object.success (index.html?_ijt=d0tp3rol8q7celbqsnh4kuepkh&_ij_reload=RELOAD_ON_SAVE:114:50)
at c (jquery.min.js:2:28294)
at Object.fireWith [as resolveWith] (jquery.min.js:2:29039)
at l (jquery.min.js:2:79800)
at XMLHttpRequest.<anonymous> (jquery.min.js:2:82254
