首页 > 代码库 > [Angular2] Build reuseable template with ngTemplateOutlet
[Angular2] Build reuseable template with ngTemplateOutlet
We can build a template, use this template and pass in different context to make it reuseable:
<template #foo let-name="name" let-skills="skills"> <h4>{{name}}</h4> <ul> <li *ngFor="let s of skills">{{s}}</li> </ul></template><div [ngTemplateOutlet]="foo" [ngOutletContext]="msg1"></div><div [ngTemplateOutlet]="foo" [ngOutletContext]="msg2"></div>
msg1; msg2; constructor() { this.msg1 = { name: "Zhentian", skills: ["JS", "Angular"] }; this.msg2 = { name: "Wan", skills: ["JSX", "React"] }; }
[Angular2] Build reuseable template with ngTemplateOutlet
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。