How can I include the request.User details in Djan

2020-03-04 07:57发布

I would like to include the contents of request.user in the context details emailed to the site admins when an error occurs, as well as the traceback and request.GET/POST/COOKIES/META

Any help appreciated.

2条回答
Anthone
2楼-- · 2020-03-04 08:19

Because process_exception middleware gets passed the request object, you can add whatever info you like to request.META

class ErrorMiddleware(object):
    """
    Alter HttpRequest objects on Error
    """

    def process_exception(self, request, exception):
        """
        Add user details.
        """
        request.META['USER'] = request.user.username
查看更多
我欲成王,谁敢阻挡
3楼-- · 2020-03-04 08:39

Make a middleware that has a process_exception method. http://docs.djangoproject.com/en/dev/topics/http/middleware/#process-exception

import sys
import traceback
from django.conf import settings
from django.core.mail import mail_admins

class ProcessExceptionMiddleware(object):
    def process_exception(self, request, exception):
        if not settings.DEBUG:
            msg = '\n\n'.join([request.user, request.GET, request.POST, \
                request.COOKIES, request.META, traceback.format_exc(*sys.exc_info())])

            mail_admins("Error!", msg)

I hope that gives you some ideas!

查看更多
登录 后发表回答