组件生命周期

时间:2019-02-03 17:10:45

标签: angular typescript lifecycle

还有另一个问题,我不知道该怎么办。 我认为问题出在组件的生命周期中,但是没有解决办法。

articles-list.components.ts

export class ArticlesListComponent implements OnInit {
  constructor(private articleService: ArticleService) {
  }

  @Input() articlesList;

  articleInfo: IArticleInfoArray;
  articlesTitles: string[];
  allArticlesInfo: any[] = [];
  averageLength: number;

  static getUrlInfo(searchQuery: string) {
    return 'https://ru.wikipedia.org/w/api.php?action=query&titles='
      + searchQuery + '&prop=info&format=json&origin=*';
  }

  ngOnInit() {
  }

  getArticlesTitle() {
    this.articlesTitles = this.articlesList[1];
  }

  getArticlesInfo() {
    for (const title of this.articlesTitles) {
      this.articleService.getArticlesInfo(ArticlesListComponent.getUrlInfo(title))
        .subscribe(
          (data: IArticleInfo) => {
            this.articleInfo = {
              ...data,
              query: {
                pages: [Object.values(data.query.pages)[0]]
              }
            };
            this.allArticlesInfo.push([this.articleInfo.query.pages[0].touched, this.articleInfo.query.pages[0].length]);
          }
        );
    }
  }

  getAverageLength() {
    let sum = 0;

    for (const length of this.allArticlesInfo) {
      sum += length[1];
    }

    this.averageLength = sum / this.allArticlesInfo.length;
  }
}

articles-list.component.html

<div class="articles-list pt-2" *ngIf="articlesList">
  <div class="ml-2">
    <h4>По запросу <small class="text-muted query">"{{ articlesList[0] }}"</small>
      найдены статьи:</h4>
    <h6>Количество найденных статей: {{ articlesList[1].length }}</h6>
  </div>
  <div class="articles-list__block" *ngFor="let article of articlesList[1]; let i = index">
    <div *ngFor="let link of articlesList[3]; let k = index" [hidden]="i != k">
      <a class="articles-list__link" [attr.href]="link">{{ article }}</a>
    </div>
    <div class="articles-list__description mt-2 mb-2" *ngFor="let description of articlesList[2]; let j = index" [hidden]="i != j">
      <div *ngIf="description !== ''; else missingSnippet">{{ description }}</div>
      <ng-template #missingSnippet>Краткое описание отсутствует</ng-template>
    </div>
  </div>
</div>

<div *ngIf="articlesList">
  <button type="button" class="btn btn-info btn-sm"
    (click)="getArticlesTitle(); getArticlesInfo(); getAverageLength()">Дополнительная информация</button>
  <ng-container *ngIf="averageLength">
    {{ averageLength }}
  </ng-container>
</div>

问题是值averageLength仅在按下第二个按钮之后出现。

我尝试在方法getArticlesTitle(); getArticlesInfo();中使用函数ngOnInit,但是会出现错误Cannot read property '1' of undefined

我该怎么办?初始化averageLength时如何立即获取值?

1 个答案:

答案 0 :(得分:2)

因此,请在ngOnInit()中调用这些函数。

export class ArticlesListComponent implements OnInit {
  constructor(private articleService: ArticleService) {
  }

  @Input() articlesList;

  articleInfo: IArticleInfoArray;
  articlesTitles: string[];
  allArticlesInfo: any[] = [];
  averageLength = 0;

  static getUrlInfo(searchQuery: string) {
    return 'https://ru.wikipedia.org/w/api.php?action=query&titles='
      + searchQuery + '&prop=info&format=json&origin=*';
  }

  ngOnInit() {
    this.getArticlesTitle();
    this.getArticlesInfo();
  }

  getArticlesTitle() {
    this.articlesTitles = this.articlesList[1];
  }

  getArticlesInfo() {
    for (const title of this.articlesTitles) {
      this.articleService.getArticlesInfo(ArticlesListComponent.getUrlInfo(title))
        .subscribe(
          (data: IArticleInfo) => {
            this.articleInfo = {
              ...data,
              query: {
                pages: [Object.values(data.query.pages)[0]]
              }
            };
            this.allArticlesInfo.push([this.articleInfo.query.pages[0].touched, this.articleInfo.query.pages[0].length]);debugger;
            this.calculateAvaerage();
          }
        );
    }
  }

  calculateAvaerage(){
    let sum = 0;
    for (const length of this.allArticlesInfo) {
      debugger;
      sum += length[1];
    }

    this.averageLength = sum / this.allArticlesInfo.length;
  }
}

,但是在这里,您尝试使用getArticlesTitle()方法。这将引发一个错误,因为未定义this.articlesList,因为尚未填充数据。

要解决此问题,您需要稍微更新搜索组件。

在搜索组件html的html中添加this.articlesList[1],并将文章初始化为空数组,以便我们可以使用length属性来确定是否加载*NgIf组件。

因此,用-

更新 search.component.ts
app-article-list

search.component.html 与-

articles: any[] = [];

因此,<app-articles-list *ngIf="articles.length > 0" [articlesList]="articles"> </app-articles-list> 组件将在文章中包含某些项目时加载。

这是更新后的stackblitz