2011-10-21 34 views
6

views.pykhông thể nhập tên HttpResponse

from django import HttpResponse 

def hello(request): 
    return HttpResponse("Hello world ! ") 

 
Request Method: GET 
Request URL: http://127.0.0.1:8000/hello/ 
Django Version: 1.3.1 
Exception Type: ImportError 
Exception Value:  
cannot import name HttpResponse 

Trả lời

18

Bạn có thể thử này: from django.http import HttpResponse

+0

OK! cảm ơn ! – fuhao715

2

Bạn đang nhập khẩu từ sai vị trí

django.http này là đúng vị trí from django.http import HttpResponse

Các vấn đề liên quan