how to get user address from request method in django
Assuming you are referring to the HTTP request object in Django, you can get the user's IP address from the request.META dictionary using the REMOTE_ADDR key.
For example:
def my_view(request):
user_address = request.META.get('REMOTE_ADDR')
# do something with user_address
Note: The REMOTE_ADDR value may not always be the actual user's IP address, especially if the user is behind a proxy server. In such cases, you may need to look for the HTTP_X_FORWARDED_FOR header in the request.META dictionary to get the correct IP address.
原文地址: https://www.cveoy.top/t/topic/8Vt 著作权归作者所有。请勿转载和采集!