python - django (request 获取 访问者的 IP)

Posted 鑫仔园

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python - django (request 获取 访问者的 IP)相关的知识,希望对你有一定的参考价值。

使用 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)

 

以上是关于python - django (request 获取 访问者的 IP)的主要内容,如果未能解决你的问题,请参考以下文章

python - django (request 获取 访问者的 IP)

Django 不接受来自 python-requests.patch() 的数据

Python学习---Django的request扩展获取用户设备信息

Django 2021年最新版教程35python+request+unittest 对Django接口进行测试

在Python Django 3.0.6中使用'requests'库。

python Django注册页面显示头像