How to Repeat a List

1 import directive [For]

import {Component, Template, bootstrap, For} from ‘angular2/angular2‘;

  it is important

2 define your list

class MyApp {

    constructor() {
        this.myName = ‘Jackey‘;
        this.myFriends = [
            {name: ‘Jackey1‘, age: 25},
            {name: ‘Jackey2‘, age: 26}
        ];
    }
}

3 repeat you list to UI

@Template({
    inline: ‘<h1>{{myName}}</h1>‘ +
    ‘<ul>‘ +
    ‘<li *for="#friend of myFriends">{{friend.name}} {{friend.age}}</li>‘ +
    ‘</ul>‘,
    directives: [For]

})

  USE *for="#xx of XXX" .. REMEMBER to inject [for] directive

4 the whole page code:

import {Component, Template, bootstrap, For} from ‘angular2/angular2‘;

@Component({
    selector: ‘my-app‘
})

@Template({
    inline: ‘<h1>{{myName}}</h1>‘ +
    ‘<ul>‘ +
    ‘<li *for="#friend of myFriends">{{friend.name}} {{friend.age}}</li>‘ +
    ‘</ul>‘,
    directives: [For]

})

class MyApp {

    constructor() {
        this.myName = ‘Jackey‘;
        this.myFriends = [
            {name: ‘Jackey1‘, age: 25},
            {name: ‘Jackey2‘, age: 26}
        ];
    }
}

bootstrap(MyApp);

  

时间: 2024-10-16 21:00:20

How to Repeat a List的相关文章

mysql while,loop,repeat循环,符合条件跳出循环

1.while循环 DELIMITER $$ DROP PROCEDURE IF EXISTS `sp_test_while`$$ CREATE PROCEDURE `sp_test_while`( IN p_number INT, #要循环的次数 IN p_startid INT #循环的其实值 ) BEGIN DECLARE v_val INT DEFAULT 0; SET v_val=p_startid; outer_label: BEGIN #设置一个标记 WHILE v_val<=p_

Talbot basically sweating the idea and can be happy for the repeat functionality

Practically no one enjoyed more NHL hockey when compared with Cam Talbot last time. It has not been even shut. The Edmonton Oilers goaltender made 73 appearances, which has been seven over his closest thing competitor, Toronto's Frederik Andersen. Th

JDBC程序执行步骤--repeat

package com.lucia.repeat; import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException; /** * 主要是练习jdbc程序的运行步骤 * @author lenovo * */public class JDBCRepeat {    publ

Repeat Number(数论)

Repeat Number 题目描述: Definition: a+b = c, if all the digits of c are same ( c is more than ten), then we call a and b are Repeat Number. My question is How many Repeat Numbers in [x,y]. 输入 There are several test cases. Each test cases contains two int

SWIFT中的repeat...while

SWIFT中的repeat...while类似于JAVA\.NET中的 do while.大同小异只是把do换成了repeat var index = 10 repeat{ print(index) index-- } while(index>0)

DRY(Don&#39;t Repeat Yourself )原则

凡是写过一些代码的程序猿都能够意识到应该避免重复的代码和逻辑.我们通过提取方法,提取抽象类等等措施来达到这一目的.我们总能时不时的听到类似这样的话:”把这些公用的类放到shared项目去,别的项目还要使用...“,什么算是公用(重复)的代码?是不是公用(重复)的代码就要放到一个叫shared的地方? 为什么说重复的代码和逻辑会带来问题呢? 你从一个类中复制了一段代码到另一个类中,但是这段代码足够的稳定,百年不变,这样的重复会带来问题吗? 也许不会. 如果这段代码需要时不时的修改,那么你就要花时间

Shell 语法 if 、 case 、for 、 while、 until 、select 、repeat、子函数

if语法 : if [ expression ]    then   commandselif [ expression2 ]   then   commandselse   commandsfi case 语法: case string1 in   str1)    commands;;   str2)    commands;;   *)    commans;;esac 循环语句 for 语法:    for  var in list do commands done     在此形式时,

android 图片水平重复平铺(repeat x)

<=用来重复显示的图 1.最简单方式 创建wave_repeat.xml <?xml version="1.0" encoding="utf-8"?> <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/wave" android:tileMode="repeat&q

CQUOJ 10672 Kolya and Tandem Repeat

A. Kolya and Tandem Repeat Time Limit: 2000ms Memory Limit: 262144KB 64-bit integer IO format: %I64d      Java class name: Any Submit Status PID: 10672 Kolya got string s for his birthday, the string consists of small English letters. He immediately

Longest Substring Without Repeat Characters

1 var lengthOfLongestSubstring = function(s) { 2 if (s === '') { 3 return 0; 4 } 5 6 var lenMax = 1, 7 lenCurr = 1, 8 i, repeat; 9 10 for (i = 1; i < s.length; i++) { 11 repeat = s.substr(i - lenCurr, lenCurr).indexOf(s.substr(i, 1)); 12 13 if (repea