Angular2 ngFor跳过第一个索引

时间:2016-02-15 09:16:05

标签: angular angular2-directives

如何跳过数组中的第一个索引?

<li *ngFor="#user of users">
    {{ user.name }} is {{ user.age }} years old.
  </li>

2 个答案:

答案 0 :(得分:57)

您可以使用slice pipe

func yourAPICall(addNecessaryParameters, failure: NSError -> (), completion: NSArray -> ()) {
    // API call and parsing goes here

    var returnArray = [AnyObject]()
    if let _ = error {
        failure(error!)
    }
    else {
        completion(returnArray)
    }
}

第一个参数对应于表示起始索引的正整数。

答案 1 :(得分:12)

此用例有SlicePipe

  <li *ngFor="let user of users | slice:1">
    {{ user.name }} is {{ user.age }} years old.
  </li>