Home Django 웹 개발 : 게시판 만들기 (2)
Post
Cancel

Django 웹 개발 : 게시판 만들기 (2)

추가할 기능

  • 답변 페이징과 정렬
  • 카테고리
  • 비밀번호 찾기와 변경
  • 프로필
  • 최근 답변과 최근 댓글
  • 조회 수
  • 소셜 로그인
  • 마크다운 에디터

답변 페이징과 정렬

테스트 답변 만들기

py manange.py shell을 통해 장고 셸을 실행시킨다.

1
2
3
4
5
6
7
from pybo.models import Question
from pybo.models import Answer
from django.utils import timezone

for i in range(50):
    a = Answer(question_id=302, content='테스트 답변입니다:[%02d]' % i, create_date=timezone.now(), author_id=1)
    a.save()

위와 같이 입력하면 테스트 답변을 얻을 수 있다. for문의 question_id에는 본인이 답변을 입력할 question에 해당하는 id를 입력하면 된다.

This post is licensed under CC BY 4.0 by the author.

TIL 220220

[C언어] 코드업 1091 : 수 나열하기3