问题背景:
目前在使用 python 中的 django.test Client() 类进行客户端测试,遇到报错信息 ‘Invalid HTTP_HOST header: 'testserver'. You may need to add 'testserver' to ALLOWED_HOSTS.’ 报错,无法解决;

1、Django -v:1.10.3
2、python -v:python3
3、web 项目已经搭建成功:首页地址 http://127.0.0.1:8000/index/ 可正常访问;

使用 Django 内置 Client()类模拟 get() 和 post()请求方式进行客户端验证;

cmd.exe

from django.test import Client
c=Client()
response=c.get('/index')
运行到这步的时候,就报 ‘‘Invalid HTTP_HOST header: 'testserver'. You may need to add 'testserver' to ALLOWED_HOSTS’ 错误了

解决方法:

1、setting.py 中设置

DEBUG=True
ALLOWED_HOSTS = ['*'] / ALLOWED_HOSTS = ['127.0.0.1','localhost','testserver']

(因为看到网上说 当 DEBUG 为 True 并且 ALLOWED_HOSTS 为空时,主机将针对 ['localhost','127.0.0.1','[:: 1]'] 进行验证。)

DEBUG=False
ALLOWED_HOSTS = ['*'] / ALLOWED_HOSTS = ['127.0.0.1','localhost','testserver']

以上均无效。跪求大神帮忙解答,在线等…… 😭


↙↙↙阅读原文可查看相关链接,并与作者交流