在Twig中插入html代码[重复]
Posted
技术标签:
【中文标题】在Twig中插入html代码[重复]【英文标题】:Insert html code in Twig [duplicate] 【发布时间】:2017-08-07 19:27:47 【问题描述】:我正在尝试在 twig 模板中插入动态链接,但是当我呈现页面时,它会显示原始 html。
例如,我将变量作为array ('fact' => ['tag' => '<a href="loremipsum">tag</a>'])
发送),然后在树枝 fact.tag
中发送,但如前所述,它返回原始标签。
我做错了吗?
【问题讨论】:
试试 fact.tag|raw
或('fact' => ['tag' => new \Twig_Markup('<a href="loremipsum">tag</a>','UTF-8')])
【参考方案1】:
这是一个 Twigfiddle,表明 fact.tag|raw
是正确答案。它显示有和没有原始过滤器:
https://twigfiddle.com/d4hc55
【讨论】:
以上是关于在Twig中插入html代码[重复]的主要内容,如果未能解决你的问题,请参考以下文章
锚元素上的空 href 属性在 HTML 中有效,但在 Twig 中无效