我使用 symfony2 和 TWIG,我想使用一些全局变量来指向页面中平板电脑的索引:
应用程序/配置/参数.ini
tab_branch="1"
应用程序/配置/config.yml
twig:
globals:
tab_branch: %tab_branch%
src/ACME/BranchBundle/Controller/defaultController.php
/**
* @Template()
*/
public function showAction($id) {
...
return array(
'tab' => 'tab_branch',
);
}
src/ACME/BranchBundle/Resources/views/default/show.html.twig
<input type="hidden" id="tablndex" value="{{ {{ tab }} }}" /> //not working
我真正想做的就是让{{ tab }}
被解析到tab_branch
,然后{{ tab_branch }}
被解析到1
(就像$$foo
在PHP中一样),我该怎么办?