Skip to main content

Posts

Showing posts with the label 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 templ...