Spring Framework

타임라인서비스) 메모 삭제하기 - deleteOne 함수

na_o 2021. 7. 24. 15:25
728x90
        function deleteOne(id) {
            // 1. DELETE /api/memos/{id} 에 요청해서 메모를 삭제합니다.
            $.ajax({
            	type: "DELETE",
                url: `/api/memos/${id}`,
                success: function() {
                	alert("삭제가 완료되었습니다.");
                    window.location.reload();
                }
            });
        }