作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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();
});
这对我来说是有效的,但我可以看到错误。
我想删除此错误日志。
最佳答案
使用of(null)
将null转换为可观察值。 switchMap 必须返回一个可观察的。
关于javascript - 错误: You provided 'null' where a stream was expected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60512147/
我是一名优秀的程序员,十分优秀!