在 Ionic 4 (Newsapi) 上点击不同新闻的相同新闻细节

Same news-detail clicking on different news on Ionic 4 (Newsapi)

我正在学习这里的教程:https://www.youtube.com/watch?v=NJ9C7iY9350。无法理解为什么我点击新闻时新闻的详细信息始终相同,我正在检查我的代码,它与 github 中的代码相同。但是不知道为什么看不到新闻-每条新闻的详细信息,我点击的第一条新闻。

附上我的代码:

新闻


TS

    goToNews(article) {
    this.newsService.currentArticle = article;
    console.log(article)
    this.router.navigate(['/tabs/news-detail']);
}

    getNews() {
    this.newsService.getData(`top-headlines?countries=${this.selectedCountry}&category=technology`)
        .subscribe(data => {
            this.news = data;
            console.log(this.selectedCountry)
        })
}

HTML

    <ion-list *ngIf="!isResult">
    <ion-item *ngFor="let country of countries" (click)="selectCountry(country)">
        {{ country }}
    </ion-item>
</ion-list>
<ion-card *ngFor="let article of news?.articles" (click)="goToNews(article)">
    <ion-card-content>
        <ion-card-title>{{ article.title }}</ion-card-title>
    </ion-card-content>
</ion-card>

新闻详情

TS


export class NewsDetailPage implements OnInit {

article

constructor(private newsService: NewsService) { }

ngOnInit() {
    this.article = this.newsService.currentArticle;
    console.log(this.article)
}
}

tabs.router.module.ts


 ....
{ path: 'news', loadChildren:'../news/news.module#NewsPageModule' },
{ path: 'news-detail', loadChildren:'../news-detail/news-detail.module#NewsDetailPageModule' },
....

我终于解决了:

ionViewWillEnter() {
    this.article = this.newsService.currentArticle;
    console.log(this.newsService.currentArticle)
}

这样做每次都会改变,因为我点击了一个新的 "news"