복붙노트

[ANGULAR] Angular 5의 NGFOR 길이

ANGULAR

Angular 5의 NGFOR 길이

해결법


  1. 1.귀하의 의견에 따라 feed_a 및 feed_b의 수를 검색하려면 배열 # 필터 및 배열 # 길이를 사용할 수 있습니다.

    귀하의 의견에 따라 feed_a 및 feed_b의 수를 검색하려면 배열 # 필터 및 배열 # 길이를 사용할 수 있습니다.

    const feedACount = feeds.filter(feed => feed.feed_type !== '').length;
    const feedBCount = feeds.length - feedACount;
    
  2. from https://stackoverflow.com/questions/49371837/ngfor-length-in-angular-5 by cc-by-sa and MIT license