标签:中间 tin views lan ... 变化 res init 激活
class MyException(MiddlewareMixin):
def process_exception(self, request, exception):
return HttpResponse(exception.message)
MIDDLEWARE_CLASSES = (
‘test1.myexception.MyException‘,
...
)
views函数里面想用print在控制台下打印中文信息,乱码问题:
因为Django默认是utf-8,系统不定。
type = sys.getfilesystemencoding()
print("中间件1请求".decode(‘utf-8‘).encode(type))
标签:中间 tin views lan ... 变化 res init 激活
原文地址:http://www.cnblogs.com/DarrenChan/p/7903825.html