gpt4 book ai didi

rxjs - 合并弃用警告混淆

转载 作者:行者123 更新时间:2023-12-03 15:27:18 25 4
gpt4 key购买 nike

使用 RXJS 我有以下

      merge(this.optionValueChanged$, this.options.changes).subscribe(() => {
this.selectionByValue(this.pValue)
}),
现在,悬停在此返回

@deprecated — use {@link scheduled} and {@link mergeAll} (e.g. `scheduled([ob1, ob2, ob3], scheduled).pipe(mergeAll())


但我读到了预定的,看起来它并没有完全按照我的意愿行事。另外,我无法弄清楚 scheduled 是什么方法内 scheduled代表。

最佳答案

Typescript 选择了错误的重载。仅接受 SchedulerLike 的重载已弃用。
尝试更改参数的顺序

merge(this.options.changes, this.optionValueChanged$)
或者将它们包装在一个数组中并传播
merge(...[this.optionValueChanged$, this.options.changes])

关于rxjs - 合并弃用警告混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63719149/

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