码迷,mamicode.com
首页 > 其他好文 > 详细

[Angular2] Build reuseable template with ngTemplateOutlet

时间:2016-11-18 07:42:24      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   alt   tle   blog   http   src   color   ons   let   

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

标签:style   alt   tle   blog   http   src   color   ons   let   

原文地址:http://www.cnblogs.com/Answer1215/p/6076208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!