Disable HTML escaping when manually rendering a Twig string(手动渲染 Twig 字符串时禁用 HTML 转义)
问题描述
我有以下代码将字符串呈现为 HTML 输出.如何阻止它转义 HTML 文本?
I have the following code that renders a string into HTML output. How can I stop it from escaping the text for HTML?
$template = '{{ who }} bar';
$params = array('who' => "Foo's");
$twig = new Twig_Environment(new Twig_Loader_String);
var_dump($twig->render($template, $params));
输出:
string(14) "Foo's bar"
我怎样才能让它输出这个呢?
How can I make it output this instead?
string(14) "Foo's bar"
我了解将 '{{ who }} bar'
更改为 '{{ who|raw }} bar'
可以解决问题,但我想解决这在渲染阶段.我不想更改所有模板.
I understand that changing '{{ who }} bar'
to '{{ who|raw }} bar'
will fix the problem, but I want to solve this at the rendering stage. I do not want to change all of the templates.
推荐答案
我翻遍了 Twig 代码,发现这工作正常:
I dug through the Twig code and found that this works fine:
$twig = new Twig_Environment(new Twig_Loader_String, array(
'autoescape' => false
));
这篇关于手动渲染 Twig 字符串时禁用 HTML 转义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:手动渲染 Twig 字符串时禁用 HTML 转义
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01