본문 바로가기
스프링 (Spring)/Timeline Project

메모 삭제하기 - deleteOne 함수

by 후닝훈 2021. 7. 20.
반응형

개발 스펙 확인

- DELETE API 사용해서 메모 삭제

 

Delete API 를 활용하여 메모 삭제

            function deleteOne(id) {
                $.ajax({
                    type: "DELETE",
                    url: `/api/memos/${id}`,
                    success: function (response) {
                        alert('메시지 삭제에 성공하였습니다.');
                        window.location.reload();
                    }
                })
            }

 

반응형

댓글