这是我的中间件:
class Go():
def process_view(self, request, view_func, view_args, view_kwargs):
aaa = "hello"
return None
如果我进入我的 views.py 和print aaa
,我会得到一个错误。
这是我的中间件:
class Go():
def process_view(self, request, view_func, view_args, view_kwargs):
aaa = "hello"
return None
如果我进入我的 views.py 和print aaa
,我会得到一个错误。