신동해

Update list.ejs : add delete button

......@@ -31,10 +31,31 @@
</ul>
</div>
</nav>
<h4 class="ml-2 my-3">서버에서 가져온 할 일 리스트</h4>
<ul class="list-group">
<% for (var i = 0; i < posts.length; i++){ %>
<li class="list-group-item">
<h4>할 일 제목 : <%= posts[i].제목 %></h4>
<p>할일 마감날짜 : <%= posts[i].날짜 %></p>
<button>삭제</button>
</li>
<% } %>
</ul>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js"></script>
<script>
$.ajax({
method : 'DELETE',
url : '/delete',
data : {_id : 1} // 요청보낼 때 삭제할 게시물 번호 함께 전송
}).done(function(결과){
// 요청이 성공하면 실행할 것들
})
</script>
<!--서버에서 가져온 할 일 리스트-->
<h4>할일 제목 : <%= %></h4>
<p>할일 마감날짜 : ???</p>
<!-- Optional JavaScript; choose one of the two! -->
......