我尝试在我的网站上整合广告。因此,文档中的文档是为了显示广告需要执行的操作:
echo captchme_generate_html($publicKey);
现在我使用twig模板,我在控制器中执行:
$this->captch_me_template = captchme_generate_html(self::CAPTCH_ME_PUBLIC_KEY);
在模板中我做:
{{ captch_me_template }}
在模板中我得到结果:
<script type="text/javascript" src="http://api.captchme.net/api/script?key=dfgfd3454.....
我不明白问题出在哪里。你能帮我吗 ? Thx提前和抱歉我的英语
答案 0 :(得分:2)
我找到了解决方案,必须添加原始{{ captch_me_template|raw }}