커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
4주차 숙제 과정
undefined주차
북마크
조*진
댓글
9
추천
0
조회수
17
조회수
17
답변 완료

아까 말씀해주신대로 들여쓰기 하고 연결은 됐는데, console 확인해보는 과정에서 저는 문구가 뜨지 않고 빈화면만 나옵니다..


function show_comment(){
    $.ajax({
        type: "GET",
        url: "/homework",
        data: {},
        success: function (response) {
            let rows = response['comments']
            for (let i = 0; i < rows.length; i++) {
                let name = rows[i]['name']
                let comment = rows[i]['comment']

                console.log(name, comment)
            }
        }
    });
}




취소
 공유
취소
댓글 0
댓글 알림
나의얼굴