转义模板的内容

发布于 2024-12-07 17:29:33 字数 314 浏览 0 评论 0原文

如何在模板中使用 twig include 函数来输出另一个模板的内容(转义为 javascript)?这是我尝试过的:

jQuery(".container").append('<div id="my-modal">{% 
  include 'MyBundle:MyFolder:myTemplate.html.twig'
  with {'my_var': var} |escape('js') %}</div>');

但是 myTemplate.html.twig 中的代码根本没有转义...我怎样才能实现这一点?

How can I use the twig include function in a template to output the content of another template, escaped for javascript ? Here is what I tried :

jQuery(".container").append('<div id="my-modal">{% 
  include 'MyBundle:MyFolder:myTemplate.html.twig'
  with {'my_var': var} |escape('js') %}</div>');

But the code inside myTemplate.html.twig is not escaped at all... how can I achieve this?

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

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

发布评论

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

评论(1

相对绾红妆 2024-12-14 17:29:33

Twig 团队很快就回复了我: https://github.com/fabpot/ Twig/issues/459#issuecomment-2286649

这是我所做的:

jQuery(".container").append('<div id="my-modal">{% filter escape('js') %}{% 
  include 'MyBundle:MyFolder:myTemplate.html.twig'
  with {'my_var': var} %}{% endfilter %}</div>');

The Twig team answered me here very fast : https://github.com/fabpot/Twig/issues/459#issuecomment-2286649

Here is what I did:

jQuery(".container").append('<div id="my-modal">{% filter escape('js') %}{% 
  include 'MyBundle:MyFolder:myTemplate.html.twig'
  with {'my_var': var} %}{% endfilter %}</div>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文