最近照着 django 官网的文档:编写你的第一个 django 应用(
https://docs.djangoproject.com/zh-hans/2.0/intro/tutorial03/)一行行跟着做,但是在第三部分的时候出了问题。往 polls\
views.py 中添加更多视图后报错 parameter 'request' value is not used。
代码如下:
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello,world. You're at the polls index.")
def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)
def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)
def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/443652
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.