
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
오류가 뜨는데 무슨내용인지 모르겠습니다~

작성한 코드 및 에러 메세지
<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']
console.log(rows)
}
function open_box() {
$('#post-box').hide()
}
function close_box() {
$('#post-box').hide()
}
})}
</script>
