django
1. 프로젝트 생성
Google App Engine 에서 Django 사용하기
1.1. 문자열 반환
URL 추가
url(r'^view/', view.test),
함수 생성
def test(request):
return HttpResponse("Hello, world. You're at the polls index.")
1.2. 템플릿 반환
URL 추가
url(r'^index/', view.index),
함수 행성
def index(request):
msg = 'My Message'
return render(request, 'index.html', {'message': msg})
/templates/index.html 파일 생성
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>{{message}}</h1>
</body>
</html>
1.3. 참고
- http://pythonstudy.xyz/python/article/307-Django-%ED%85%9C%ED%94%8C%EB%A6%BF-Template
- http://i5on9i.blogspot.kr/2016/09/google-app-engine-django.html