如何访问 Jinja2 模板(应用程序引擎上的 Bottle 框架)中的会话数据?

发布于 2024-08-27 18:58:43 字数 537 浏览 14 评论 0原文

我正在 Google App Engine 上运行微型框架 Bottle。我的模板使用 Jinja2 。我使用 Beaker 来处理会话。我仍然是一个相当大的 Python 新手,并且对我已经走到这一步感到非常兴奋:)我的问题是如何访问模板中的会话数据?我可以在实际的 python 代码中毫无问题地获取会话数据。每次调用 jinja 模板时我都可以传递会话数据。但由于我需要网站主菜单栏中的会话数据......这意味着我必须在每个页面上传递它。有谁知道我是否可以直接在模板中访问它?

例如,我需要标题链接的会话数据:

主页|常见问题 |登录

首页|常见问题 |注销

非常感谢任何帮助! :D

I'm running the micro framework Bottle on Google App Engine. I'm using Jinja2 for my templates. And I'm using Beaker to handle the sessions. I'm still a pretty big Python newbie and am pretty stoked I got this far :) My question is how do I access the session data within the templates? I can get the session data no problem within the actual python code. And I could pass the session data each time I call a jinja template. But since I need the session data in the main menu bar of the site... that means I would have to pass it on every single page. Does anyone know if I can access it directly in the templates?

For example I need the session data for my header links:

Home | FAQ | Login

or

Home | FAQ | Logout

Any help is greatly appreciated! :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲娇萝莉攻 2024-09-03 18:58:43

如果需要,您可以将内容添加到 Jinja2 环境全局所有模板均可访问。请参阅此页面了解更多信息。

更新:

一个简单的示例是,对于您的设置代码:

from jinja2 import Environment, PackageLoader
env = Environment(loader=PackageLoader('yourapplication', 'templates'))

然后,在您的请求处理代码中:

env.globals['session'] = session # Your session
# Your template can contain things like {{ session['key'] }}
template = env.get_template('mytemplate.html')
print template.render(the='variables', go='here')
#return response using rendered data

You can add things to the Jinja2 environment globals if you want them to be accessible to all templates. See this page for additional information.

Update:

A simple example is, for your setup code:

from jinja2 import Environment, PackageLoader
env = Environment(loader=PackageLoader('yourapplication', 'templates'))

Then, in your request handling code:

env.globals['session'] = session # Your session
# Your template can contain things like {{ session['key'] }}
template = env.get_template('mytemplate.html')
print template.render(the='variables', go='here')
#return response using rendered data
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文