2017-05-23 70 views
0

我是angular2的新手。我想知道#(散列)在angular2中做了什麼。 e.g#(散列)在angular2中做了什麼

<ion-card #mycards1 swing-card *ngFor="let group of groups"> 

 <ul> 
      <li 
      *ngFor="#Item of Items" 
      (click)="onItemClicked(Item)"> 
       {{ Item.name }} 
      </li> 
     </ul> 

回答

-1

它來定義打字稿格式的變量1路。

<div *ngFor="let hero of heroes">{{hero.name}}</div> 
<input #heroInput> {{heroInput.value}} 

的表達還可以指模板的上下文的特性,例如作爲模板輸入變量(讓主人公)或模板參考變量(#heroInput)。

https://angular.io/docs/ts/latest/guide/template-syntax.html