PHP 表单生成器类 TinyMCE - 原始模式不转义<和>

发布于 2024-11-03 10:32:20 字数 722 浏览 5 评论 0原文

我使用 PHP 表单生成器类 及其 TinyMCE 实现 。然后我将它传递给 Twig 模板。

如果我在 TinyMCE 中输入任何粗体文本,当它到达 Twig 时,特殊字符会被转义。

所以:

<strong>im bold</strong> 

在浏览器中显示,来源是

&lt;strong&gt;im bold&lt;/strong&gt;

我尝试过使用:

tinyMCE.init({
    ...
    entity_encoding : "raw"

我也尝试过编写一个函数:

function html_chars($text) {
$badchars = array( "&lt;" , "&gt;   ");
$goodchars   = array("<" , ">" );
return str_replace($badchars, $goodchars, $text);

}

但这也不起作用。

关于如何停止这种替换的任何想法?

Im using the PHP Form Builder Class and its TinyMCE implementation . I am then passing it through to a Twig template.

If I enter any bold text into TinyMCE though , when it comes through to the Twig , the special chars are escaped.

So:

<strong>im bold</strong> 

shows in the browser, and the source is

<strong>im bold</strong>

I have tried using:

tinyMCE.init({
    ...
    entity_encoding : "raw"

Ive also tried writing a function :

function html_chars($text) {
$badchars = array( "<" , ">   ");
$goodchars   = array("<" , ">" );
return str_replace($badchars, $goodchars, $text);

}

but that doesn't work either.

any idea on how to stop this replacement?

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

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

发布评论

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

评论(1

沉默的熊 2024-11-10 10:32:21

使用 Twig raw 解决了这个问题:

{% autoescape true %}
{{ var|raw }} {# var won't be escaped #}
{% endautoescape %}

Using Twig raw solved this:

{% autoescape true %}
{{ var|raw }} {# var won't be escaped #}
{% endautoescape %}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文