最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - using @viewChild in angular 8 - Stack Overflow

programmeradmin2浏览0评论

I have an application that use @ViewChild and below is the code I have

 @ViewChild('paginator', { read: MatPaginator, static: true}) public paginator: MatPaginator;

on the front I am using <mat-paginator [ngStyle]="{'display': orders.length > 0 ? 'flex': 'none' }" #paginator> and I have implemented AfterViewInit and this is the code I have just to check that the paginator has been initialised:

ngAfterViewInit(): void {
    console.log('tab group', this.paginator);
}

but the this.tabGroup is undefined and hence I can't set it's property. What am I doing wrong.

Thanks

I have an application that use @ViewChild and below is the code I have

 @ViewChild('paginator', { read: MatPaginator, static: true}) public paginator: MatPaginator;

on the front I am using <mat-paginator [ngStyle]="{'display': orders.length > 0 ? 'flex': 'none' }" #paginator> and I have implemented AfterViewInit and this is the code I have just to check that the paginator has been initialised:

ngAfterViewInit(): void {
    console.log('tab group', this.paginator);
}

but the this.tabGroup is undefined and hence I can't set it's property. What am I doing wrong.

Thanks

Share Improve this question edited Jul 11, 2019 at 14:49 Jack M asked Jul 11, 2019 at 12:04 Jack MJack M 2,5744 gold badges30 silver badges52 bronze badges 7
  • You've shown us the code where this.paginator is declared. Where do you declare this.tabGroup? – Michael Beeson Commented Jul 11, 2019 at 12:11
  • sorry was supposed to be this.paginator. it's a typo as I have two on the same page LOL. I ahve changed the code now – Jack M Commented Jul 11, 2019 at 12:16
  • Does your template have any *ngIf in DOM elements around the paginator? – Reactgular Commented Jul 11, 2019 at 12:21
  • it is straight after a DIV with an if so I have <div class="table-wrapper" *ngIf="orders?.length > 0"> gjhgjhgjhgjh</div> <mat-paginator [ngStyle]="{'display': orders.length > 0 ? 'flex': 'none' }" #paginator> – Jack M Commented Jul 11, 2019 at 12:27
  • 3 Have you tried using { static: false } ? – heunetik Commented Jul 11, 2019 at 14:46
 |  Show 2 more ments

1 Answer 1

Reset to default 11

Since Angular 8 ViewChild and ContentChild decorators must have a new option called static.

If you add static: true on a dynamic element (wrapped in a condition or a loop), then it will not be accessible in ngOnInit nor in ngAfterViewInit.

Setting it to static: false should behave as you're expecting it to.

Also, when updating to Angular 8, in the mand line there will be a message explaining the new ViewChild and ContentChild changes, and a link this documentation page, and here's the pull request of the changes, with some explanations. This might help wrapping your head around the changes.

发布评论

评论列表(0)

  1. 暂无评论