属性错误 at/ 'str' 对象没有属性 'makefile'
Attribute Error at/ 'str' object has no attribute 'makefile'
我正在学习 Django 并在我的第一个代码中遇到了这个错误。
我正在尝试使用 Django 编写 Hello world 类型的程序,一切都很完美,但出现此错误 'str' object has no attribute 'makefile'
您正在从某处导入 HTTPResponse
(http.client?)(我猜在您脚本的第 1 行)
django.http
只有 HttpResponse
。尝试:
def home(request):
return HttpResponse("Hello world")
我正在学习 Django 并在我的第一个代码中遇到了这个错误。
我正在尝试使用 Django 编写 Hello world 类型的程序,一切都很完美,但出现此错误 'str' object has no attribute 'makefile'
您正在从某处导入 HTTPResponse
(http.client?)(我猜在您脚本的第 1 行)
django.http
只有 HttpResponse
。尝试:
def home(request):
return HttpResponse("Hello world")