twig 输出中的 \t 字符

发布于 2024-12-05 04:02:45 字数 430 浏览 1 评论 0原文

有人知道如何使 twig 停止输出 \t 和 \n 字符吗? 我的输出如下所示:

<ul>\n \t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<a href=''> ...

对于此模板:

    <ul>
        {% for datum in this.data %}
        <li><a href='#'>link</a></li>
        {% endfor %}
    </ul>

谢谢!

anyone knows how to make twig stop outputting \t and \n characters?
my output looks like this:

<ul>\n \t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<a href=''> ...

for this template:

    <ul>
        {% for datum in this.data %}
        <li><a href='#'>link</a></li>
        {% endfor %}
    </ul>

thanks!

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

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

发布评论

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

评论(1

旧故 2024-12-12 04:02:45

没错,正如Twig 空格手册中所述:

模板引擎不会进一步修改空白,因此每个
空白(空格、制表符、换行符等)原样返回。

您可以使用 spaceless 标签来抑制空格。

{% spaceless %}
    <div>
        <strong>foo</strong>
    </div>
{% endspaceless %}

{# output will be <div><strong>foo</strong></div> #}

请参阅手册以了解更多选项。

That's right, as it says in the Twig manual for whitespaces:

Whitespace is not further modified by the template engine, so each
whitespace (spaces, tabs, newlines etc.) is returned unchanged.

You can use the spaceless-tag to suppress whitespaces.

{% spaceless %}
    <div>
        <strong>foo</strong>
    </div>
{% endspaceless %}

{# output will be <div><strong>foo</strong></div> #}

Have a look at the manual for further options.

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