75. 댓글 삭제
볼빵빵오춘기
detail.jsp 댓글삭제에 onclick 이벤트 추가한다. 댓글 리스트 ${reply.content} 작성자: ${reply.user.username} 삭제 Board.js replyDelete: function (boardId,replyId) { $.ajax({ type: "DELETE", url: `/api/board/${boardId}/reply/${replyId}`, dataType: "json", }).done(function (resp) { alert("댓글 삭제 완료되었습니다."); location.href = `/board/${boardId}`; }).fail(function (error) { alert(JSON.stringify(error)); }); }, BoardApiControl..