django学习实践简单示例超详细版本
from django.shortcuts import render
from django.http import HttpResponse
# 首页视图
def index(request):
return render(request, 'index.html', {'title': 'Hello, Django!'})
# 关于页视图
def about(request):
return HttpResponse("This is the about page.")
# 联系页视图
def contact(request):
return HttpResponse("This is the contact page.")
这个简单的Django示例包含了三个基本的视图函数,分别对应首页、关于页和联系页。每个视图都使用了不同的方法来返回响应,其中render
用于渲染模板文件,并可以传递上下文数据,而HttpResponse
用于直接返回原始字符串。这个例子展示了如何使用Django的基本功能来创建简单的网页,并且如何通过视图函数处理请求。
评论已关闭