0

我需要使用 Grav CMS 从树枝模板中输出不带协议(http: 或 https:) 的 URL。

做这个的最好方式是什么?

Twig 提供了一个MATCH 函数用于 使用正则表达式的比较,以及一个不使用正则表达式的REPLACE 函数。

因此,我似乎坚持做一个令人费解的 if 语句,例如:

`

    {% if url starts with 'https:' %}   
        {{ url|replace('https:') }}
    {% else %}

        {% if url starts with 'http:' %}
            {{ url|replace('http:') }}
        {% else %}
            {{ url }}
        {% endif %}

`

有没有更好的方法来完成这个壮举?如果我把这段代码放在一个宏中,我该如何利用这个宏?这是完整的宏:

`

{% macro fixUrl(url) %}
    {% if url %}
        {% if url starts with 'https:' %}   
            {{ url|replace('https:') }}
        {% else %}

            {% if url starts with 'http:' %}
                {{ url|replace('http:') }}
            {% else %}
                {{ url }}
            {% endif %}
        {% endif %}
    {% endif %}

{% endmacro %}

`

我称宏为:<meta property="og:url" content="{{ self.fixUrl(page.url()) }}" />

当我调用这个宏时,我得到一个空字符串。

4

1 回答 1

1

我发现 Grav CMS 提供了一个regex_replace函数。

这是我的解决方案: <meta property="og:url" content="{{ page.url()|regex_replace('/^https?:/', '') }}" />

于 2017-06-22T17:56:07.133 回答