250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- fetch
- 연결리스트
- 힙
- JPQL
- shared lock
- 낙관적락
- BOJ
- 스토어드 프로시저
- 다대일
- FetchType
- eager
- PS
- 유니크제약조건
- querydsl
- execute
- 연관관계
- CHECK OPTION
- exclusive lock
- 비관적락
- 동적sql
- 즉시로딩
- 데코레이터
- 다대다
- dfs
- SQL프로그래밍
- 일대다
- 백트래킹
- 이진탐색
- 지연로딩
- 스프링 폼
Archives
- Today
- Total
흰 스타렉스에서 내가 내리지
DB에 담긴 데이터들을 html에 띄워보자 본문
728x90
views.py
def home(request):
posts = Blog.objects.all()
return render(request, 'index.html', {'posts': posts})
index.html
{% for post in posts %}
<h2>
{{post.title}}
-
{{post.date}}
</h2>
<h4>
{{post.body}}
</h4>
<hr>
{% endfor %}
홈 화면
DB로부터 데이터를 필터링해서 가져오기 - 최신순으로 가져오기
views.py
def home(request):
# posts = Blog.objects.all()
posts = Blog.objects.filter().order_by('-date')
return render(request, 'index.html', {'posts': posts})
홈 화면
'Django' 카테고리의 다른 글
사용자가 media 를 업로드 할 수 있도록 (0) | 2022.06.08 |
---|---|
게시글 detail 페이지 구현 (0) | 2022.06.08 |
modelForm (0) | 2022.06.07 |
django form 이용하기 (0) | 2022.06.07 |
static (0) | 2022.06.06 |