장고:글쓰기: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
(→설명) |
(→url 작성) |
||
12번째 줄: | 12번째 줄: | ||
(뷰의 설정이나, import방식에 따라 뷰를 불러오는 방식이 달라질 수 있다.)<syntaxhighlight lang="python"> | (뷰의 설정이나, import방식에 따라 뷰를 불러오는 방식이 달라질 수 있다.)<syntaxhighlight lang="python"> | ||
path('question/create/', | from django.urls import path | ||
path('question/modify/<int:question_id>/', | from .views import * #해당 앱의 뷰를 불러온다. | ||
path('question/delete/<int:question_id>/', | |||
app_name = 'pool' | |||
urlpatterns = [ | |||
path('question/', list, name='list'), | |||
path('question/create/', create, name='create'), | |||
path('question/modify/<int:question_id>/', modify, name='modify'), | |||
path('question/delete/<int:question_id>/', delete, name='delete'), | |||
] | |||
</syntaxhighlight><nowiki>#</nowiki>아직 함수를 짜주진 않았지만, 앞으로 만들 함수에 대해 연결해두자. | </syntaxhighlight><nowiki>#</nowiki>아직 함수를 짜주진 않았지만, 앞으로 만들 함수에 대해 연결해두자. | ||
24번째 줄: | 32번째 줄: | ||
from django.db import models | from django.db import models | ||
class Question(models.Model): | class Question(models.Model):#세부내용은 필요에 따라.. | ||
author = models.ForeignKey(User, on_delete=models.CASCADE, related_name='author_question') | author = models.ForeignKey(User, on_delete=models.CASCADE, related_name='author_question') | ||
subject = models.CharField(max_length=200) | subject = models.CharField(max_length=200) | ||
31번째 줄: | 39번째 줄: | ||
modify_date = models.DateTimeField(null=True, blank=True) | modify_date = models.DateTimeField(null=True, blank=True) | ||
def __str__(self): | def __str__(self):#관리자페이지에 나타낼 객체 이름. | ||
return self.subject | return self.subject#이 객체의 subject를 이름으로 쓰겠다는 의미. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== 관리자 기능에서 확인 === | |||
모델이 제대로 작성되고, 글이 제대로 생성될 수 있는지 관리자기능에 등록한 후 작성해보자. | |||
관리자 등록은 [[장고:관리자페이지]] 참조. | |||
이상이 없으면 뷰 작성으로 넘어가자. | |||
==뷰 작성== | == 뷰 작성 == | ||
뷰가 많아지면 /앱/views/posting_view.py 따위의 이름으로 작성한다. | 뷰가 많아지면 /앱/views/posting_view.py 따위의 이름으로 작성한다. | ||
{| class="wikitable" | {| class="wikitable" | ||
44번째 줄: | 59번째 줄: | ||
|글작성 | |글작성 | ||
|<syntaxhighlight lang="python"> | |<syntaxhighlight lang="python"> | ||
from django.contrib.auth.decorators import login_required # | from django.contrib.auth.decorators import login_required #로그인 기능 | ||
from django.shortcuts import render, get_object_or_404, redirect | from django.shortcuts import render, get_object_or_404, redirect | ||
from django.utils import timezone | from django.utils import timezone | ||
52번째 줄: | 67번째 줄: | ||
@login_required(login_url='common:login') | @login_required(login_url='common:login')#로그인이 필요없으면 빼도 됨. | ||
def | def create(request): | ||
if request.method == 'POST':#포스트로 요청이 들어온다면... 글을 올리는 기능. | if request.method == 'POST':#포스트로 요청이 들어온다면... 글을 올리는 기능. | ||
form = QuestionForm(request.POST) #폼을 불러와 내용입력을 받는다. | form = QuestionForm(request.POST) #폼을 불러와 내용입력을 받는다. |
2020년 10월 30일 (금) 11:01 판
장고! 웹 프레임워크! 틀:장고
개요
글쓰기 기능을 구현하기 위해 정리한 문서.
기본적으로 포스팅 기능이지만, 모델명을 Post로 하기엔 전송방식인 post와 혼동이 오곤 해서 question으로 구현한다.
url 작성
urls.py 안에 필요한 기능을 다 담아주어야 한다.
예컨대, 글을 쓴다면 만들기, 편집, 삭제기능을 만들어주어야 하기에 다음과 같이 기입한다.
(뷰의 설정이나, import방식에 따라 뷰를 불러오는 방식이 달라질 수 있다.)
from django.urls import path
from .views import * #해당 앱의 뷰를 불러온다.
app_name = 'pool'
urlpatterns = [
path('question/', list, name='list'),
path('question/create/', create, name='create'),
path('question/modify/<int:question_id>/', modify, name='modify'),
path('question/delete/<int:question_id>/', delete, name='delete'),
]
#아직 함수를 짜주진 않았지만, 앞으로 만들 함수에 대해 연결해두자.
모델 작성
글에서 포함해야 할 것들이 있다. 작성자, 작성일자, 내용 등의 요소를 포함하여 모델을 작성한다.
/앱/models.py 안에 작성한다.
from django.contrib.auth.models import User
from django.db import models
class Question(models.Model):#세부내용은 필요에 따라..
author = models.ForeignKey(User, on_delete=models.CASCADE, related_name='author_question')
subject = models.CharField(max_length=200)
content = models.TextField()
create_date = models.DateTimeField()
modify_date = models.DateTimeField(null=True, blank=True)
def __str__(self):#관리자페이지에 나타낼 객체 이름.
return self.subject#이 객체의 subject를 이름으로 쓰겠다는 의미.
관리자 기능에서 확인
모델이 제대로 작성되고, 글이 제대로 생성될 수 있는지 관리자기능에 등록한 후 작성해보자.
관리자 등록은 장고:관리자페이지 참조.
이상이 없으면 뷰 작성으로 넘어가자.
뷰 작성
뷰가 많아지면 /앱/views/posting_view.py 따위의 이름으로 작성한다.
글작성 | from django.contrib.auth.decorators import login_required #로그인 기능
from django.shortcuts import render, get_object_or_404, redirect
from django.utils import timezone
from ..forms import QuestionForm #폼을 불러온다.
from ..models import Question #모델을 불러온다.
@login_required(login_url='common:login')#로그인이 필요없으면 빼도 됨.
def create(request):
if request.method == 'POST':#포스트로 요청이 들어온다면... 글을 올리는 기능.
form = QuestionForm(request.POST) #폼을 불러와 내용입력을 받는다.
if form.is_valid():
question = form.save(commit=False)
question.author = request.user # 추가한 속성 author 적용
question.create_date = timezone.now()
question.save()
return redirect('pybo:index') #작성이 끝나면 목록화면으로 보낸다.
else:#포스트 요청이 아니라면.. form으로 넘겨 내용을 작성하게 한다.
form = QuestionForm()
context = {'form': form}
return render(request, 'pybo/question_form.html', context)
|
글수정 | |
from django.contrib import messages |