我已经搜索了一个答案,但还没有找到答案,如何解决角度的性能问题? 没有第三方库,如:
A)ReactJs B)其他图书馆......
export class ReportController implements ng.IScope {
public contacts: Array<string> _contacts;
private _scope: ng.IScope;
constructor( $scope: ng.IScope ) {
this._scope = $scope;
this._contacts = this.getContacts(); // return 15k result
}
}
顺便说一下:跟踪不工作!不够快。
答案 0 :(得分:0)
这里有一个问题,因为你用ng-repeat
标记了它,如果你的数据没有改变,你想要查看一次性绑定。除了this blog post之外,the linked SO question(以及the documentation)有一个很好的概述。