有没有办法利用奏鸣曲的 Datagrid 功能来显示结果集?
class DefaultController extends Controller
{
public function nl_listAction()
{
$obj = array();
$cnx = $this->get('doctrine.dbal.a_connection');
$cnx->query('CALL(a_procedure)');
$obj['cnx'] = $cnx;
return $this->render('GlideConfigBundle:Default:nl_list.html.twig', $obj);
}
}
在这里,我从一个控制器调用一个过程,我想使用 Datagrid 显示结果数据。
这是个好主意吗 ?
我该怎么做 ?