我正在尝试使用 GeoIP,但在使用 REMOTE_ADDR 时出现问题。显示的 IP 是我的服务器的 IP,而不是客户端的 IP。
from django.contrib.gis.geoip import GeoIP
Example context:
g = GeoIP()
ip = self.request.META.get('REMOTE_ADDR')
context['my_ip'] = ip # this display ip client
context['pais_anuncio'] = g.country_code('ip') # this display ip my server.
我做错了什么,谢谢。