django获取客户ip
Posted liujuejun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django获取客户ip相关的知识,希望对你有一定的参考价值。
1 def get_client_ip(request): 2 x_forwarded_for = request.META.get(‘HTTP_X_FORWARDED_FOR‘) 3 if x_forwarded_for: 4 ip = x_forwarded_for.split(‘,‘)[-1].strip() 5 else: 6 ip = request.META.get(‘REMOTE_ADDR‘) 7 return ip
使用django来获取用户访问的IP地址 request.META[‘REMOTE_ADDR‘] 服务器会使用ngix等代理http,或者是该网站做了负载均衡,使用remote_addr抓取到的是1270.0.1,
使用HTTP_X_FORWARDED_FOR才获得真实IP。
以上是关于django获取客户ip的主要内容,如果未能解决你的问题,请参考以下文章