我想在symfony2中使用angular。为此,应该可以从这样的引用中加载模板:
<div ng-include="/link/to/template.html"></div>
装载是角度的一部分。我们只需要提供模板的路径。不应使用树枝渲染模板。这对symfony有用吗?
答案 0 :(得分:5)
简单制作没有树枝标签的模板,以及通过ajax加载的路径。无需控制器
my_template:
path: /path/to/template
defaults:
_controller: FrameworkBundle:Template:template
template: 'AcmeBundle:Angular:template.html.twig'
更多信息:http://symfony.com/doc/current/cookbook/templating/render_without_controller.html