在 Angular 16 中,可以使用rxjs的pairwise操作符来访问旧值。
以下是一个简单的示例:
import { Component, OnInit, OnDestroy } from '@angular/core'; import { pairwise, takeUntil } from 'rxjs/operators'; import { Subject } from 'rxjs';
@Component({
selector: 'app-example',
template: Current value is: {{ value }}
})
export class ExampleComponent implements OnInit, OnDestroy {
value: string;
oldValue: string;
destroyed$: Subject
Previous value is: {{ oldValue }}
constructor() { }
ngOnInit() { this.getData().pipe( pairwise(), takeUntil(this.destroyed$) ).subscribe(([oldValue, currentValue]) => { this.oldValue = oldValue; this.value = currentValue; }); }
ngOnDestroy() { this.destroyed$.next(); this.destroyed$.complete(); }
getData() { // return an observable which emits values } }
以上代码中,通过使用rxjs的pairwise操作符来将前一个和当前值作为一个元素传递给观察者。稍后在订阅器中,我们可以使用解构语法将这两个元素分离,并将它们分别存储在 oldValue 和 value 变量中。
另外,这里还使用了takeUntil操作符,以确保在销毁组件前取消Observable的订阅。