0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Djangoチュートリアル NameError: name 'HttpResponse' is not defined

Posted at

本記事で話すこと

'HttpResponse'を定義してあげる

  • デフォルトで生成されているファイル
polls/views.py
from django.shortcuts import render

# Create your views here.
  • 変更後のファイル
polls/views.py
from django.http import HttpResponse


def index(request):
    return HttpResponse("Hello, world. You're at the polls index.")

一行目で'HttpResponse'が定義されるのでnot definedにならないようになります。

間違えていた点

自分は1行目が変わっていることを見落としていて、def以下しか変更してなかったためnot definedになっていました。

変更点をハイライトしてくれたらいいのに。。

polls/views.py
from django.shortcuts import render


def index(request):
    return HttpResponse("Hello, world. You're at the polls index.")

参考記事

英語ソースです。
https://stackoverflow.com/questions/44185354/django-tutorial-name-httpresponse-is-not-defined

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?