Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在学习 RxJS 时,我想知道:
如何创建一个告诉 Observable X 在 Observable Y 之后是否有价值的 Observable?
示例需要判断是否有 Ajax 请求待处理响应?就像等待Bacon.js一样。
在提出问题时,我找到了一个答案:
IE
var availabilityPending = usernameToValidate.select(function() {return true;}) .merge(usernameAvailable.select(function() {return false;}));
不知道这种行为是否已经有帮手了?