HTTP 프로토콜 메서드 GET, POST를 장고 내에서 사용하는 방법을 실습한다.
<form action=”/account/hello_world/” method=”post”>
{% csrf_token %}
<input type=”submit” class=”btn btn-primary” value=”POST”>
</form>
<h1>
{{ text }}
</h1>
if request.method == “POST”:
return render(request, ‘accountapp/hello_world.html’, context={’text’: ‘POST METHOD!!!’})
else:
return render(request, ‘accountapp/hello_world.html’, context={’text’: ‘GET METHOD!!!’})