有没有一种方法,我首先通过获取视图上下文数据来显示中间件process_template_response响应,然后显示原始视图响应。
我已经定义了一个中间件,
def process_template_response(self, request, response):
return render(request, 'accounts/form.html', {})
我的观点是,
def view_func(request, product_id):
...
...
return TemplateResponse(request, 'accounts/home.html', {})