gpt4 book ai didi

javascript - 错误: You provided 'null' where a stream was expected

转载 作者:行者123 更新时间:2023-11-28 12:11:51 37 4
gpt4 key购买 nike

我是 rxjs 中的第一个,下面的代码可以正常工作,并且作为用户使用没有问题。

this.searchField.valueChanges.pipe(
debounceTime(1000),
switchMap(searchText => {
if (searchText .length >= 3) {
return this.api.post(`api/medicine/medicines`, { product: searchText })
}
else {
return null; // this is make errors
}
})
).subscribe(term => {
console.log('api: ', term)
this.MedicineList = term;
this.onChangeText();
});

这对我来说是有效的,但我可以看到错误。

Error screen

我想删除此错误日志。

最佳答案

使用of(null)将null转换为可观察值。 switchMap 必须返回一个可观察的。

关于javascript - 错误: You provided 'null' where a stream was expected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60512147/

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