티스토리 뷰
view.js
from django.shortcuts import render, HttpResponse
topics = [
{'id':1, 'title':'routing', 'body':'Routing is ..'},
{'id':2, 'title':'view', 'body':'View is ..'},
{'id':3, 'title':'Model', 'body':'Model is ..'},
]
def HTMLTemplate(articleTag): #템플릿 생성 함수 만들기
global topics
ol = ''
for topic in topics:
ol += f'<li><a href="/read/{topic["id"]}">{topic["title"]}</a></li>'
return f'''
<html>
<body>
<h1><a href="/">Django</a></h1> <!-- 클릭시 django로 이동-->
<ul>
{ol}
</ul>
{articleTag} <!-- articleTag따라 내용 변경 -->
<ul>
<li><a href="/create/">create</a></li>
</ul>
</body>
</html>
'''
def index(request):
article = '''
<h2>Welcome</h2>
Hello, Django
'''
return HttpResponse(HTMLTemplate(article))
def read(request, id):
global topics
article = ''
for topic in topics:
if topic['id'] == int(id):
article = f'<h2>{topic["title"]}</h2>{topic["body"]}'
return HttpResponse(HTMLTemplate(article))
def create(request):
article = '''
<form action="/create/"> <!--폼 생성 -->
<p><input type="text" name="title" placeholder="title"></p> <!--제목 -->
<p><textarea name="body" placeholder="body"></textarea></p> <!--내용 -->
<p><input type="submit"></p> <!--제출 -->
</form>
'''
return HttpResponse(HTMLTemplate(article))
실행 화면
create클릭 시 제목, 내용, 제출 버튼이 있는 폼 생성
'개발공부 > Django' 카테고리의 다른 글
11. 생성기능 (request response object) (0) | 2022.04.26 |
---|---|
10. 생성기능(method=GET,POST) (0) | 2022.04.26 |
8. 읽기 기능 상세 보기 페이지 만들기 (0) | 2022.04.26 |
7. 홈페이지 읽기 기능 구현하기 (0) | 2022.04.26 |
6. django를 쓰는 이유 (0) | 2022.04.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- React quill
- 코드스테이츠
- 코테
- seb
- 그리디 알고리즘
- 감정 일기장
- 다이나믹 프로그래밍
- 프리프로젝트
- SEB 43
- dictionary
- 프로젝트
- 스택오버플로우
- til
- 개인 프로젝트
- 회고
- 프로그래머스
- Python
- 백준
- 브루드포스
- 인적성
- dfs
- SEB 43기
- SEB43
- useContext
- SEB43기
- Redux
- BFS
- 감정일기장
- 기술면접
- 프론트엔드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함