foreach in angular 2

foreach in angularjs 2

AngularJs 2.0 is an explicit templates binding.

The example as given below.
1
2
3
4
5
<ul>
  <template foreach #user [in]="users">
  <li>{{user.name}}</li>
  </template>
</ul>
<ul>
  <template foreach #user [in]="users">
  <li>{{user.name}}</li>
  </template> 
</ul>
OR
1
2
3
4
5
<ul>
  <li template="foreach; #user; in="users">
  <h1>{{user.name}}</h1>
  </li>
</ul>
<ul>
  <li template="foreach; #user; in="users">
  <h1>{{user.name}}</h1>
  </li> 
</ul>
OR
1
2
3
4
5
<ul>
  <li template="foreach #user in users">
      {{user.name}}
  </li>
</ul>
<ul>
  <li template="foreach #user in users">
      {{user.name}}
  </li> 
</ul>
OR
1
2
3
4
5
6
7
// This is the key values pairs for-each binding.
<ul>
  <li *foreach="#item in items">
      {{item}}
  </li>
</ul>
// This is the key values pairs for-each binding.

<ul>
  <li *foreach="#item in items">
      {{item}}
  </li> 
</ul>
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^