转义模板的内容
如何在模板中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Twig 团队很快就回复了我: https://github.com/fabpot/ Twig/issues/459#issuecomment-2286649
这是我所做的:
The Twig team answered me here very fast : https://github.com/fabpot/Twig/issues/459#issuecomment-2286649
Here is what I did: