这是我的views.py
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
reutrn HttpResponse("<h1>This is a test</h1>")
无论我做什么,这种语法错误总会显示出来!
File "C:\Users\#24\Python Projects\Test\Packages\views.py", line 6
reutrn HttpResponse("<h1>This is a test</h1>")
^
SyntaxError: invalid syntax
我看起来很难看出是否有其他人有这个问题,但没有骰子。 这是我第一次尝试django
答案 0 :(得分:1)
该行中存在拼写错误,您应键入返回而不是 reutrn
reutrn HttpResponse("<h1>This is a test</h1>")