56

尝试了所有我能猜到的语法都不能让它工作!

<!--- THIS WORKS FINE --->
<ion-card *ngFor="#post of posts">
{{post|json}}
</ion-card>

<!--- BLANK PAGE --->
<ion-card *ngFor="#post of posts track by post.id">
{{post|json}}
</ion-card>

<!--- Exception : Cannot read property 'id' of undefined --->
<ion-card *ngFor="#post of posts;trackBy:post.id">
{{post|json}}
</ion-card>

<!--- Exception : Cannot read property 'undefined' of undefined --->
<ion-card *ngFor="#post of posts;trackBy:posts[index].id">
{{post|json}}
</ion-card>

<!--- Blank page no exception raised !  --->
<ion-card *ngFor="#post of posts;#index index;trackBy:posts[index].id">
{{post|json}}
</ion-card>

对我有用的唯一方法是

  1. 在控制器类中创建方法

    识别(索引,发布:发布){ 返回 post.id }

<ion-card *ngFor="#post of posts;trackBy:identify">
</ion-card>

这是唯一的方法吗?我不能只为 trackBy 指定一个属性名称吗?

4

4 回答 4

95

正如@Eric 评论中所指出的,经过大量阅读和玩耍,这里是如何在 angular2 中使用 trackBy

  1. 首先你需要知道它的语法与 angular1 不同,现在你需要用 a 将它与 for 循环分开;

用法1:按对象的属性跟踪

 // starting v2. 1 this will throw error, you can only use functions in trackBy from now on

<ion-card *ngFor="let post of posts;trackBy:post?.id">
</ion-card> // **DEPRECATED**
---or---
<ion-card *ngFor="let post of posts;trackBy:trackByFn">
</ion-card>

在这里你问 angular2

  1. 创建一个局部变量 post;
  2. 你告诉 trackBy 等到这个局部变量准备好“你通过使用 elvis 运算符'变量名后面的问号'来做到这一点,然后使用它的 id 作为跟踪器。

所以

// starting v2. 1 this will throw error, you can only use functions in trackBy from now on

*ngFor="#post of posts;trackBy:post?.id"

和 angular 的 1 一样

ng-repeat="post in posts track by post.id"

用法 2:使用自己的函数进行跟踪

@Page({
    template: `
        <ul>
            <li *ngFor="#post of posts;trackBy:identify">
              {{post.data}}
            </li>
        </ul>
    `
})
export class HomeworkAddStudentsPage {
    posts:Array<{id:number,data:string}>;   

    constructor() {
        this.posts = [  {id:1,data:'post with id 1'},
                        {id:2,data:'post with id 2'} ];
    }

    identify(index,item){
      //do what ever logic you need to come up with the unique identifier of your item in loop, I will just return the object id.
      return post.id 
     }

}

trackBy 可以取一个回调的名称,它会为我们调用它并提供 2 个参数:循环的索引和当前项目。

为了实现与 Angular 1 相同的效果,我曾经这样做:

<li ng-repeat="post in posts track by identify($index,post)"></li>

app.controller(function($scope){
  $scope.identify = function(index, item) {return item.id};
});
于 2016-03-31T10:52:25.783 回答
11

正如您已经认识到的,使用函数是trackBy在 Angular 2中使用的唯一方法

<ion-card *ngFor="#post of posts;trackBy:identify"></ion-card>

官方文档指出https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html

关于的所有其他信息<ion-card *ngFor="let post of posts;trackBy:post?.id"></ion-card>都是错误的。从 Angular 2.4.1 开始,这也会在应用程序中引发错误。

于 2016-12-22T12:56:01.093 回答
6

除了其他人的答案之外,只想添加一些示例(Angular 2+)以明确使用 trackBy 。

从文档:

为避免这种昂贵的操作,您可以自定义默认跟踪算法。通过向 NgForOf 提供 trackBy 选项。trackBy 接受一个有两个参数的函数:index 和 item。如果给出了 trackBy,Angular 会根据函数的返回值跟踪变化。

在此处阅读更多信息:https ://angular.io/api/common/NgForOf

一个例子会更好地解释它。

app.component.ts

   array = [
      { "id": 1, "name": "bill" },
      { "id": 2, "name": "bob" },
      { "id": 3, "name": "billy" }
   ]

   foo() {
      this.array = [
         { "id": 1, "name": "foo" },
         { "id": 2, "name": "bob" },
         { "id": 3, "name": "billy" }
      ]
   }

   identify(index, item) {
      return item.id;
   }

让我们array使用 . 显示 into 3 div *ngFor

app.component.html

*ngFor 没有 trackBy的例子:

<div *ngFor="let e of array;">
   {{e.id}} - {{e.name}}
</div>
<button (click)="foo()">foo</button>

如果我们点击foo按钮会发生什么?

→ 3 个 div 将被刷新。自己尝试一下,打开你的控制台进行验证。

*ngFor 使用 trackBy的示例:

<div *ngFor="let e of array; trackBy: identify">
   {{e.id}} - {{e.name}}
</div>
<button (click)="foo()">foo</button>

如果我们点击foo按钮会发生什么?

→ 只有第一个 div 会被刷新。自己尝试一下,打开你的控制台进行验证。

如果我们更新第一个对象而不是整个对象呢?

   foo() {
      this.array[0].name = "foo";
   }

→ 这里不需要使用trackBy

它在使用Subscription时特别有用,它通常看起来像我用array. 所以它看起来像:

   array = [];
   subscription: Subscription;

   ngOnInit(): void {
      this.subscription = this.fooService.getArray().subscribe(data => {
         this.array = data;
      });
   }

   identify(index, item) {
      return item.id;
   }
于 2019-09-11T13:22:52.117 回答
1

trackBy背后的概念:

  1. ngForof angular 通过跟踪对象身份自动优化修改/创建/删除对象的显示。因此,如果您在列表中创建所有新对象然后使用ngFor,它将呈现整个列表。

  2. 让我们考虑一个场景,尽管进行了所有ngFor优化,但渲染仍然需要时间。在这种情况下,我们使用trackBy. 因此,我们可以提供另一个参数来跟踪对象,而不是作为默认跟踪标准的对象身份。

一个运行的例子:

<!DOCTYPE html>
<html>

<head>
    <title>Angular 2.1.2 + TypeScript Starter Kit</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <script src="https://unpkg.com/zone.js@0.6.21/dist/zone.js"></script>
    <script src="https://unpkg.com/reflect-metadata@0.1.9/Reflect.js"></script>
    <script src="https://unpkg.com/systemjs@0.19.41/dist/system.js"></script>
    <script src="https://unpkg.com/typescript@2.1.4/lib/typescript.js"></script>
    <script src="config.js"></script>
  <script>
      System.import('app')
          .catch(console.error.bind(console));
    </script>
</head>

<body>
    <my-app>
        loading...
    </my-app>
</body>

</html>
于 2017-05-19T08:37:35.470 回答