diff --git a/dingxin_toolbox_drf/http.py b/dingxin_toolbox_drf/http.py index 2b608fd..0387d23 100644 --- a/dingxin_toolbox_drf/http.py +++ b/dingxin_toolbox_drf/http.py @@ -9,10 +9,11 @@ class SetRemoteAddrFromForwardedFor(MiddlewareMixin): def process_request(self, request): print('process_request') + print("request.META") + print(request.META) try: print("request.META") real_ip = request.META['HTTP_X_FORWARDED_FOR'] - print(request.META) print('real_ip', real_ip) except KeyError as err: print('HTTP_X_FORWARDED_FOR key error')