59. 글 삭제하기
볼빵빵오춘기
board.js $("#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(resp); alert("삭제가 완료 되었습니다.") location.href="/"; }).fail(function(error){ alert(id+"js 삭제에러 호출"+JSON.stringify(error)); }); },// deleteById end BoardApiController @DeleteMapping("/api/..