django 프로젝트 생성

django 프로젝트 생성

프로젝트 생성

Google App Engine 에서 Django 사용하기

문자열 반환

URL 추가

1
url(r'^view/', view.test),

함수 생성

1
2
def test(request):
return HttpResponse("Hello, world. You're at the polls index.")

템플릿 반환

URL 추가

1
url(r'^index/', view.index),

함수 행성

1
2
3
4
def index(request):
msg = 'My Message'
return render(request, 'index.html', {'message': msg})

/templates/index.html 파일 생성

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>{{message}}</h1>
</body>
</html>

참고

공유하기