Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 Symfony 时,我用相应动作的名称来命名我的视图,这样我就可以使用@Template不带任何参数的注解来渲染视图。
@Template
/** * @Route("/{id}/show", name="entity_show") * @Template() */ public function showAction($id) { }
这仅适用于 Twig 吗?@Template当我使用 PHP 视图时,有没有办法不必指定视图的名称作为参数?
除了 Patt 所写的内容之外,您还必须为注解的每次使用指定引擎:
@Template(engine="php")