1

我试图访问我的树枝模板上的 app.user.username。

运行 Symfony3.4。

我的身份验证正在工作,所以这不应该是问题。

这是代码:

{% extends "@Foro/layout.html.twig" %}

{% block content %}

{% if is_granted('ROLE_USER') %}
    <strong>You're a normal user</strong>
{% endif %}
{% if is_granted('ROLE_ADMIN') %}
    {% app.user.username %}
    <strong>You're an admin</strong>
{% endif %}
<div class="col-lg-4">
    <h2>Identifícate</h2>
    <hr/>
    <form action="{{ path("login_check") }}" method="POST">
        <label>Email:</label>
        <input type="email" id="username" name="_username"  class="form-control" />
        <label>Contraseña:</label>
        <input type="password" id="password" name="_password"  class="form-control" />
        <br/>
        <input type="submit" value="Entrar"  class="btn btn-success" />
        <input type="hidden" name="_target_path" value="/login" />
    </form>
</div>
<div class="clearfix"></div>
{% endblock %}

我收到以下错误:

意外的“app”标签(期待在第 8 行附近定义的“if”标签的结束标签)。

你们能帮帮我吗?

4

1 回答 1

4

像这样写:

{{ app.user.username }}
于 2017-12-15T10:29:51.740 回答