댓글처리_작성 후 목록 출력
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 = ""; output += "댓글번호"; output += "작성자"; output += "내용"; output += "작성시간"; for (let i in res) { output += ""; output +=..