gpt4 book ai didi

python - render_to_response 中传递的字典范围

转载 作者:行者123 更新时间:2023-12-01 05:04:03 24 4
gpt4 key购买 nike

def func(user):
templatename="login.html"
return render_to_response(templatename,{'user':user},context_instance=RequestContext(request)

在 django 中的 render_to_response 函数中传递的字典的范围是什么?意味着我们只能在 login.html 模板或我们应用程序的任何模板中使用该字典。

最佳答案

您的dict的范围仅在login.html内。

如果您想在模板中使用对用户的访问权限,请使用如下内容:

{{user}}

如果您希望在任何模板中都有一个具有范围的字典,请使用上下文处理器

将此添加到您的Settings.py

import django.conf.global_settings as DEFAULT_SETTINGS

TEMPLATE_CONTEXT_PROCESSORS = DEFAULT_SETTINGS.TEMPLATE_CONTEXT_PROCESSORS + (
'utils.custom_context_processors.my_context_processor',
)

在项目根目录中创建一个文件夹,将其命名为“utils”,在文件夹内创建 init.py 文件和 custom_context_processors.py

   +apps
....other folders.
+utils
---__init__.py
---custom_context_processors.py

custom_context_processors.py

def my_context_processor(request):
your_custom_dict = {...}
return your_custom_dict

这样,your_custom_dict 将在任何模板中可用。

注意:如果您只想在任何地方访问用户,只需执行 {{request.user}}

关于python - render_to_response 中传递的字典范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25439167/

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