django 查看request的详细参数

如果需要查看前台传来的header中的详细参数并获取的话,使用以下方式即可:

在views.py中新增以下函数:

from django.core.handlers.wsgi import WSGIRequest

def test(request):
    print(type(request))   # 打印出request的类型
    print(request.environ)   # 打印出request的header详细信息
    # 循环打印出每一个键值对
    for k, v in request.environ.items():
        print(k, v)

你可能感兴趣的:(python,django)