gpt4 book ai didi

django - 'WSGIRequest' 对象没有属性

转载 作者:行者123 更新时间:2023-12-05 05:23:57 25 4
gpt4 key购买 nike

如果我像这样制作上下文处理器:

def add_external(request):
context = {"stext":"this is the info"}
return context

并将其添加到设置中:

'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'website.context_processor.add_external',
],

我可以通过 {{stext}} 访问模板中的变量。当我现在从这个模板中的链接跳转到同一个应用程序中的另一个 View 时,我不应该能够访问这个变量:

request.stext

相反,我得到了这个错误:

'WSGIRequest' object has no attribute 'stext'

我在这里缺少什么?

最佳答案

您实现了上下文处理器,其中的数据仅在模板内部可用,而不是 request 对象。

您可能想要使用自定义请求 middleware .

关于django - 'WSGIRequest' 对象没有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36520536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com