Angular 2:ngFor完成后的回调

时间:2016-03-05 20:09:10

标签: javascript angularjs angular ngfor

在Angular 1中,我编写了一个自定义指令(" repeater-ready"),以便在迭代完成后与ng-repeat一起使用来调用回调方法:

if ($scope.$last === true)
{
    $timeout(() =>
    {
        $scope.$parent.$parent.$eval(someCallbackMethod);
    });
}

标记中的用法:

<li ng-repeat="item in vm.Items track by item.Identifier"
    repeater-ready="vm.CallThisWhenNgRepeatHasFinished()">

如何在Angular 2中使用ngFor实现类似的功能?

8 个答案:

答案 0 :(得分:20)

您可以将@ViewChildren用于此目的

@Component({
  selector: 'my-app',
  template: `
    <ul *ngIf="!isHidden">
      <li #allTheseThings *ngFor="let i of items; let last = last">{{i}}</li>
    </ul>

    <br>

    <button (click)="items.push('another')">Add Another</button>

    <button (click)="isHidden = !isHidden">{{isHidden ? 'Show' :  'Hide'}}</button>
  `,
})
export class App {
  items = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];

  @ViewChildren('allTheseThings') things: QueryList<any>;

  ngAfterViewInit() {
    this.things.changes.subscribe(t => {
      this.ngForRendred();
    })
  }

  ngForRendred() {
    console.log('NgFor is Rendered');
  }
}

原创答案就在这里 https://stackoverflow.com/a/37088348/5700401

答案 1 :(得分:11)

你可以使用这样的东西(ngFor local variables):

<li *ngFor="#item in Items; #last = last" [ready]="last ? false : true">

然后你可以Intercept input property changes with a setter

  @Input()
  set ready(isReady: boolean) {
    if (isReady) someCallbackMethod();
  }

答案 2 :(得分:9)

对我来说,使用Typescript在Angular2中工作。

<li *ngFor="let item in Items; let last = last">
  ...
  <span *ngIf="last">{{ngForCallback()}}</span>
</li>

然后你可以使用这个功能来处理

public ngForCallback() {
  ...
}

答案 3 :(得分:4)

而不是[ready],请使用[attr.ready],如下所示

 <li *ngFor="#item in Items; #last = last" [attr.ready]="last ? false : true">

答案 4 :(得分:2)

我在RC3中发现接受的答案并不奏效。但是,我找到了解决这个问题的方法。对我来说,我需要知道ngFor何时完成运行MDL componentHandler以升级组件。

首先你需要一个指令。

upgradeComponents.directive.ts

import { Directive, ElementRef, Input } from '@angular/core';

declare var componentHandler : any;

@Directive({ selector: '[upgrade-components]' })
export class UpgradeComponentsDirective{

    @Input('upgrade-components')
    set upgradeComponents(upgrade : boolean){
        if(upgrade) componentHandler.upgradeAllRegistered();
    }
}

接下来将其导入您的组件并将其添加到指令

import {UpgradeComponentsDirective} from './upgradeComponents.directive';

@Component({
    templateUrl: 'templates/mytemplate.html',
    directives: [UpgradeComponentsDirective]
})

现在在HTML中设置&#34;升级组件&#34;属性为true。

 <div *ngFor='let item of items;let last=last' [upgrade-components]="last ? true : false">

当此属性设置为true时,它将在@Input()声明下运行该方法。在我的例子中,它运行componentHandler.upgradeAllRegistered()。但是,它可以用于您选择的任何内容。通过绑定到最后一个&#39; ngFor语句的属性,它将在完成后运行。

您不需要使用[attr.upgrade-components],即使这不是本机属性,因为它现在是一个真正的指令。

答案 5 :(得分:2)

解决方案非常简单。如果您需要知道ngFor何时将所有DOM元素打印到浏览器窗口,请执行以下操作:

1。添加占位符

为要打印的内容添加一个占位符:

<div *ngIf="!contentPrinted">Rendering content...</div>

2。添加一个容器

使用display: none作为内容创建一个容器。打印所有项目后,执行display: blockcontentPrinted是组件标志属性,默认为false

<ul [class.visible]="contentPrinted"> ...items </ul>

3。创建一个回调方法

onContentPrinted()添加到组件,该组件在ngFor完成后将自身禁用:

onContentPrinted() { this.contentPrinted = true; this.changeDetector.detectChanges(); }

也不要忘记使用ChangeDetectorRef来避免ExpressionChangedAfterItHasBeenCheckedError

4。使用ngFor last

last上声明ngFor变量。当此项目为最后一个时,请在li中使用它来运行方法:

<li *ngFor="let item of items; let last = last"> ... <ng-container *ngIf="last && !contentPrinted"> {{ onContentPrinted() }} </ng-container> <li>

  • 使用contentPrinted组件标志属性运行onContentPrinted() 仅一次
  • 使用ng-container对布局没有影响。

答案 6 :(得分:1)

我为这个问题写了一个演示。该理论基于the accepted answer但这个答案并不完整,因为li应该是一个可以接受ready输入的自定义组件。

我为这个问题写了a complete demo

定义一个新组件:

从'@ angular / core'导入{Component,Input,OnInit};

@Component({
  selector: 'app-li-ready',
  templateUrl: './li-ready.component.html',
  styleUrls: ['./li-ready.component.css']
})
export class LiReadyComponent implements OnInit {

  items: string[] = [];

  @Input() item;
  constructor() { }

  ngOnInit(): void {
    console.log('LiReadyComponent');
  }

  @Input()
  set ready(isReady: boolean) {
    if (isReady) {
      console.log('===isReady!');
    }
  }
}

模板

{{item}}

应用程序组件中的用法

<app-li-ready *ngFor="let item of items;  let last1 = last;" [ready]="last1" [item]="item"></app-li-ready>

您将看到控制台中的日志将打印所有项目字符串,然后打印isReady。

答案 7 :(得分:-1)

我还没有深入了解ng如何渲染元素。但是从观察来看,我发现它经常倾向于每个项目的迭代次数不止一次地评估表达式。

这导致在检查ngFor&#39; last&#39;时所做的任何打字稿方法调用。变量得到,有时,不止一次触发。

为了保证在ngFor正确完成项目迭代时对你的打字稿方法进行一次调用,你需要为ngFor做的多重表达式重新评估添加一个小保护。

这是一种方法(通过指令),希望它有所帮助:

指令代码

import { Directive, OnDestroy, Input, AfterViewInit } from '@angular/core';

@Directive({
  selector: '[callback]'
})
export class CallbackDirective implements AfterViewInit, OnDestroy {
  is_init:boolean = false;
  called:boolean = false;
  @Input('callback') callback:()=>any;

  constructor() { }

  ngAfterViewInit():void{
    this.is_init = true;
  }

  ngOnDestroy():void {
    this.is_init = false;
    this.called = false;
  }

  @Input('callback-condition') 
  set condition(value: any) {
      if (value==false || this.called) return;

      // in case callback-condition is set prior ngAfterViewInit is called
      if (!this.is_init) {
        setTimeout(()=>this.condition = value, 50);
        return;
      }

      if (this.callback) {
        this.callback();
        this.called = true;
      }
      else console.error("callback is null");

  }

}

在您的模块中声明上述指令后(假设您知道如何操作,如果没有,请询​​问,我希望用代码片段更新),以下是如何使用ngFor指令:< / p>

<li *ngFor="let item of some_list;let last = last;" [callback]="doSomething" [callback-condition]="last">{{item}}</li>

&#39; doSomething的&#39;是当您完成遍历项目时要调用的TypeScript文件中的方法名称。

注意:&#39; doSomething&#39;没有括号&#39;()&#39;在这里,我们只是传递对typescript方法的引用,而不是在这里实际调用它。

最后,这里是&#39; doSomething&#39;方法在你的打字稿文件中看起来像:

public doSomething=()=> {
    console.log("triggered from the directive's parent component when ngFor finishes iterating");
}