python - django (request 获取 访问者的 IP)
2021-01-29 23:18
阅读:541
标签:class war div meta bsp pre 访问者 add for 使用 Django 获取访问者的 IP python - django (request 获取 访问者的 IP) 标签:class war div meta bsp pre 访问者 add for 原文地址:https://www.cnblogs.com/xinzaiyuan/p/12821642.html
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实现百度翻译
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python - django (request 获取 访问者的 IP)
文章链接:http://soscw.com/index.php/essay/48901.html
文章标题:python - django (request 获取 访问者的 IP)
文章链接:http://soscw.com/index.php/essay/48901.html
评论
亲,登录后才可以留言!