如何在 jinja2 中对危险的未经处理的输入进行 html 转义?

发布于 2024-08-07 17:47:02 字数 99 浏览 8 评论 0原文

我可以在模板内完成还是必须在 python 代码中完成?

我有一个可能包含 dau&s 字符的变量。我如何在jinja2中逃脱它?

Can I do it inside the template or must it be done in python code?

I have a variable that may contain da<ngero>u&s chars. How do I escape it in jinja2?

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

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

发布评论

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

评论(5

中性美 2024-08-14 17:47:02

例如

{{ user.username|e }}

通过 |e 过滤器进行管道传输

Docs:

逆流 2024-08-14 17:47:02

您还可以告诉环境自动转义所有内容:

e = Environment(loader=fileloader, autoescape=True)

注意:在 jinja1 中,这是 auto_escape

You could also tell the environment to autoescape everything:

e = Environment(loader=fileloader, autoescape=True)

note: in jinja1 this is auto_escape

一念一轮回 2024-08-14 17:47:02

如果你想在程序中转义 html,你可以这样做(示例):

>>> import jinja2
>>> jinja2.__version__
'2.6'
>>> a
'<script>alert("yy")</script>'
>>> jinja2.escape(a)
Markup(u'<script>alert("yy")</script>')
>>> str(jinja2.escape(a))
'<script>alert("yy")</script>'

If you want to escape html in your programme, you can do it like this(example):

>>> import jinja2
>>> jinja2.__version__
'2.6'
>>> a
'<script>alert("yy")</script>'
>>> jinja2.escape(a)
Markup(u'<script>alert("yy")</script>')
>>> str(jinja2.escape(a))
'<script>alert("yy")</script>'
青丝拂面 2024-08-14 17:47:02

您可以进行字符串检查并替换为相应的转义字符。

例如:string=我是特殊字符<
执行以下操作:

string.replace("<","< ;")

请注意,在您的代码中,t 和 ; 之间有空格。已被淘汰。此处无法消除它,因为它将被格式化为显示 <相反 :P

然后使用 jinja2 打印出格式化的字符串。 <<应该出现在您的显示屏上。

You can do a string check and replace with the corresponding escaped characters.

For example: string=I am a special character <
Do the following:

string.replace("<","< ;")

Note that in your code, the space between t and ; has been eliminated. Can't eliminate this here as it will be formatted to show < instead :P

Then use jinja2 to print out the formatted string. The < should appear in your display.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文