進出口新的Symfony和什麼我嘗試旁邊:輸出變量
- 選擇一切從表計數的行數。
- 訪問並在樹枝模板中顯示此信息。
這是從我在CONTROLER代碼致力於從取於數據庫的數據部分:
.
.
.
$em=$this->getDoctrine()->getManager();
$query=$em->createQuery('SELECT b,COUNT(b.id) FROM AcmeWebBundle:baza b ORDER BY b.id DESC');
$users = $query->getResult();
if (!$em) {
throw $this->createNotFoundException('Something went wrong!');
}
return $this->render('AcmeWebBundle:Default:index.html.twig',array('users'=>$users));
}
表中的命名巴扎
我有以下字段:ID,用戶名,date..etc
和部分命名index.html.twig
{% extends 'AcmeWebBundle:Default:master.html.twig' %}
{% block body %}
<h1> something</h1><br></br>
{% for user in users %}
{{ ...how to access to the number of rows and other data...}}
{% endfor %}
{% endblock %}
行的數量:http://twig.sensiolabs.org/doc/filters/length.html – cheesemacfly 2013-03-27 21:11:15