python

使用 Django 获取访问者的 IP

if request.META.get('HTTP_X_FORWARDED_FOR'):
    ip = request.META.get("HTTP_X_FORWARDED_FOR")
else:
    ip = request.META.get("REMOTE_ADDR")

print("ip : ", ip)
原文地址:https://www.cnblogs.com/xinzaiyuan/p/12821642.html