HttpResponse 对象

  • 视图在接收请求并处理后,必须返回HttpResponse对象或子对象。在django.http模块中定义了HttpResponse对象的API。HttpRequest对象由Django创建,HttpResponse对象由开发人员创建。

  • 例子:

    • urls.py

      path('index/',viewa.index)
      
    • views.py

      from django.http import HttpResponse
      def index(request):
        return HttpResponse('ok')
      

results matching ""

    No results matching ""