我如何 运行 ngOnInit() 上的一个函数只有一次,而不是在从另一个 routerLink 返回时再次?

How do I run a function on ngOnInit() only once and not again upon returning back from another routerLink?

HomeComponent

ngOnInit()
{
    console.log('loaded');
    this.retrieveData();
}

retrieveData()
{
    // this.dataService.getData().subscribe(...);
}

我正在加载组件时检索数据。当用户点击另一个routerLink,比如SettingsComponent和returns回到HomeComponent,这个函数当然又被调用了,因为组件又加载了一次.但是每次我 return 返回组件时,它都会再次调用函数,这会产生太多不需要的 HTTP 请求。我需要防止这种情况并确保该函数仅在第一次被调用。我该怎么做呢?我应该使用其他组件生命周期钩子吗?

好的,我看到你正在使用 service 加载数据,这是一个好方法。

然后您可以简单地将数据缓存在某处,当您返回组件时检查此数据的缓存。我认为你可以将数据直接存储在你的服务中,这将把它保存在内存中,或者你可以把它放在 localStorage

所以第一个选项看起来像:

data.service.ts

export class DataService {

    private data: any[];

    setData(data:any[]){
        this.data = data;
    } 

    getData(){
        return this.data || [];
    }

    hasData(){
        return this.data && this.data.length;    
    }  

    getData(){
        // your implementation here 
    }
}

然后在HomeComponent

里面
retrieveData(){
    if(this.dataService.hasData()){
         // this will get the data which was previously stored in the memory
         // and there will be no HTTP request
         let data = this.dataService.getData();
         // do something with data now ...
    }else{
        // old code 
        this.dataService.getData().subscribe(response => {
            // but this time safe the data for future use
            this.dataService.setData(response.data);   
        }, error => {
            // handle errors
        });
    }
}

重要:如果使用这种方法,您应该在 app.module.ts -> 提供商

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        FormsModule,
        HttpModule
    ],
    providers: [
        DataService   <---------- SEE HERE
    ],
    bootstrap: [AppComponent]
})
export class AppModule { }

然后不这样做:

@Component({
    selector: 'home',
    templateUrl: '...',
    styleUrls: ['...'],
    providers: [
        DataService     <---- THEN DON'T put in component's providers
    ]
})
export class HomeComponent{ ... }

====================================== =====

localStorage 方法

HomeComponenet

retrieveData()
{
    let data = localStorage.getItem('yourDataName');
    if (data === null){
        // old code 
        this.dataService.getData().subscribe(response => {
            // but this time safe the data for future use in localStorage
            localStorage.setItem('yourDataName', response.data); 
        }, error => {
            // handle errors
        });
    } else {
        // seems that you already loaded this data 
        // do something with this data ...
    }
}

这两种方法都有不能处理大量数据的局限性,当然如果你不想破坏正在使用你的应用程序的用户的浏览器:)