你好,我正在尝试创建可观察 (OBS) 和主题 (SUB) 的函数,用于存储来自 OBS 的最后一项,而 SUB 具有 F 值,
并在 SUN 变为 T 时发射它(并且仅发射它)

   OBS ---a----b----c----d----e----f----g----h-----
   SUB ------F----------T------------F-------T-----
   OUT -----------------c--------------------h-----

我试图解决这个问题
OBS.window(SUB)
        .withLatestFrom(SUB)
        .switchMap(([window, status]) => {

            if(status === F) {
                return window.combineLatest(SUB, (cmd, status) => {
                    if(status === T) {
                        return null;
                    };

                    return cmd;
                }).last((e) => {
                    return !!e;
                })
            }

            return Observable.empty<Command>();
        }).filter((cmd) => {
            return !!cmd;
        })

但它不起作用

最佳答案

所以看起来你想要这样的东西:

SUB
  // Only emit changes in the status
  .distinctUntilChanged()
  // Only forward true values down stream
  .filter(t => t === T)
  // Only emit the latest from OBS when you get a T from SUB
  // Remap it so only cmd is forwarded
  .withLatestFrom(OBS, (_, cmd) => cmd)

关于javascript - RxJS 函数从一个 observable 发出最后一个值,然后另一个发出 true,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45618451/

10-13 03:03