gpt4 book ai didi

angular - RxJS distinctUntilChanged - 对象比较

转载 作者:太空狗 更新时间:2023-10-29 16:56:57 25 4
gpt4 key购买 nike

我有一个对象流,我需要比较当前对象是否与前一个对象不同,在这种情况下会发出一个新值。我发现 distinctUntilChanged 运算符应该完全按照我的意愿行事,但出于某种原因,除了第一个之外,它从不发出任何值。如果我删除 distinctUntilChanged 值,则会正常发出。

我的代码:

export class SettingsPage {
static get parameters() {
return [[NavController], [UserProvider]];
}

constructor(nav, user) {
this.nav = nav;
this._user = user;

this.typeChangeStream = new Subject();
this.notifications = {};
}

ngOnInit() {

this.typeChangeStream
.map(x => {console.log('value on way to distinct', x); return x;})
.distinctUntilChanged(x => JSON.stringify(x))
.subscribe(settings => {
console.log('typeChangeStream', settings);
this._user.setNotificationSettings(settings);
});
}

toggleType() {
this.typeChangeStream.next({
"sound": true,
"vibrate": false,
"badge": false,
"types": {
"newDeals": true,
"nearDeals": true,
"tematicDeals": false,
"infoWarnings": false,
"expireDeals": true
}
});
}

emitDifferent() {
this.typeChangeStream.next({
"sound": false,
"vibrate": false,
"badge": false,
"types": {
"newDeals": false,
"nearDeals": false,
"tematicDeals": false,
"infoWarnings": false,
"expireDeals": false
}
});
}
}

最佳答案

我遇到了同样的问题,并通过使用 JSON.stringify 比较对象修复了它:

.distinctUntilChanged((a, b) => JSON.stringify(a) === JSON.stringify(b))

如果属性的顺序相同,此代码将有效,否则可能会中断,因此这里有一个快速修复方法(注意此方法较慢)

.distinctUntilChanged((a, b) => JSON.stringify(a).split('').sort().join('') === JSON.stringify(b).split( '').sort().join(''))

关于angular - RxJS distinctUntilChanged - 对象比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37172395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com