글 삭제

    [Springboot] 블로그 만들기 (28)_글 삭제하기

    Detail.jsp 돌아가기 수정 삭제 글 번호 : ${board.id } 작성자 : ${board.user.userName } ${ board.title } ${board.content } board.js let index = { init: function(){ $("#btn-delete").on("click",()=>{ this.deleteById(); }); } ,deleteById: function(){ let id = $("#id").text(); $.ajax({ type:"DELETE", url:"/api/board/"+id, dataType:"json" }).done(function(resp){ alert("글삭제가 완료되었습니다."); console.log(resp) location.hre..