Django 양식 post 요청

414 단어 Django
urls.py re_path(’^search_post$’, search.search_post),
post.html 파일 코드: {% csrf token%}

{ { rlt }}


search2.py 파일 코드:
-- coding: utf-8 --
from django.shortcuts import render from django.views.decorators import csrf
POST 요청 데이터 수신
def search_post(request): ctx ={} if request.POST: ctx[‘rlt’] = request.POST[‘q’] return render(request, “post.html”, ctx)

좋은 웹페이지 즐겨찾기