代码示例:
在组件中,订阅 Observable 后要记得在组件销毁时解除订阅。
import { Component, OnInit, OnDestroy } from '@angular/core';
import { MyService } from './my.service';
import { Subscription } from 'rxjs';
@Component({
selector: 'app-my-component',
template: '{{message}}
'
})
export class MyComponent implements OnInit, OnDestroy {
message: string;
subscription: Subscription;
constructor(private myService: MyService) {}
ngOnInit() {
this.subscription = this.myService.someObservable
.subscribe(data => this.message = data);
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
}
避免重复计算可以提高性能并减少内存使用。
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-my-component',
template: '{{message}}
'
})
export class MyComponent implements OnInit {
message: string;
ngOnInit() {
this.message = this.getComputedData();
}
private getComputedData(): string {
// 计算数据,这里只做示例
return 'computed data';
}
}