Angular2 Twig模板加载

时间:2017-03-07 10:54:48

标签: angular templates twig

我正在使用Symfony和Angular2。

有没有办法在angular2中加载symonfy twig模板?

@Component({
    selector: 'Group',
    templateUrl: './path/to/twig/group.component.html.twig'
})

提前致谢

1 个答案:

答案 0 :(得分:1)

选中此项:https://github.com/manekinekko/angular2-twig。有一个可以帮助你的WIP。

通过使用此库,您可以(如README文件中所述):

import {Twig} from 'angular2-twig';
@Twig({
    templateUrl: 'templates/field--comment.html.twig',
    // -or- template: '',
    context: {
        title: 'Angular2 ❤ Twig',
        content_1: 'content 1',
        content_2: 'content 2'
    },
    selector: '#block-content',
 })
 export class AppComponent {}