Toggle navigation
Toggle navigation
This project
Loading...
Sign in
신동해
/
Omniscient-Public-Point-Of-View
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
4
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
신동해
2021-12-07 23:45:22 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
18108c146b82f68c7c2020c62241fb791b2152fc
18108c14
1 parent
58c06a31
Update list.ejs : add delete button
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
3 deletions
views/list.ejs
views/list.ejs
View file @
18108c1
...
...
@@ -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! -->
...
...
Please
register
or
login
to post a comment