Symfony2 FOSUserBundle显示expiresAt在twig模板中

时间:2016-04-20 21:09:13

标签: symfony twig fosuserbundle

我想在我的树枝上显示expiresAt,但我有这个错误:

 Method "expiresat" for object "AuthenticationBundle\Entity\User" does not exist in AdminNCBundle:NC:list_clients.html.twig at line 43 

在我的树枝上,我做了一个:

   {% for client in clients %}
        <tr>
            <td>{{ client.firstname }} {{ client.lastname }}</td>
            <td>{{ client.telephone }}</td>
            <td>{{ client.registrationdate|date('Y-m-d H:i:s') }}</td>
            <td>{{ client.expiresat|date('Y-m-d H:i:s') }}</td>
            <td>{{ client.duration }}</td>
        </tr>
   {% endfor %}

注册日期显示得非常好。

1 个答案:

答案 0 :(得分:1)

answer of geoB是正确的

我在User实体

中添加了一个方法
public function getExpiresAt() { 
    return $this->expiresAt; 
} 

因为FOSUserBundle模型用户没有getExpiresAt方法