Django错误:HttpResponse语法无效

时间:2017-08-14 05:49:47

标签: django syntax-error httpresponse

这是我的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

1 个答案:

答案 0 :(得分:1)

该行中存在拼写错误,您应键入返回而不是 reutrn

    reutrn HttpResponse("<h1>This is a test</h1>")