댓글처리_작성 후 목록 출력
by 볼빵빵오춘기board2detatil.html
$.ajax({
// 요청 방식 : post, 요청주소 : /comment/save , 요청데이터 : 작성자, 작성내용, 게시글 번호
type : "post",
url : "/comment/save",
data : {
"commentWriter" : writer,
"commentContents" : contents,
"boardId" : id
},
success: function(res){
console.log("요청 성공 : ",res);
let output = "<table>";
output += "<tr><th>댓글번호</th>";
output += "<th>작성자</th>";
output += "<th>내용</th>";
output += "<th>작성시간</th></tr>";
for (let i in res) {
output += "<tr>";
output += "<td>" + res[i].id + "</td>";
output += "<td>" + res[i].commentWriter + "</td>";
output += "<td>" + res[i].commentContents + "</td>";
output += "<td>" + res[i].commentCreatedTime + "</td>";
output += "</tr>";
}
output += "</table>";
document.getElementById('comment-list').innerHTML = output;
document.getElementById('commentWriter').value = '';
document.getElementById('commentContents').value = '';
},
error: function(err){
console.log("요청실패 : ",err);
}
});
'강의 따라하기 > member2' 카테고리의 다른 글
댓글처리_게시글 상세조회시 댓글 목록 출력 (0) | 2023.12.30 |
---|---|
댓글처리_댓글 DB저장 및 처리결과 리턴 (0) | 2023.12.30 |
댓글처리_댓글작성 내용 서버로 요청하기 (0) | 2023.12.30 |
댓글처리_댓글 기능 소개 (0) | 2023.12.30 |
파일첨부_다중파일 첨부 및 마무리 (0) | 2023.12.30 |
블로그의 정보
Hello 춘기's world
볼빵빵오춘기