-1
from django.shortcuts import render
from django.http import HttpResponse

def index(request):
    return HttpsResponse("Hello World, I am there")

# Create your views here.
4

1 回答 1

0

改变这个:return HttpsResponse("Hello World, I am there")

进入这个:return HttpResponse("Hello World, I am there")

于 2018-10-29T01:58:48.183 回答