gpt4 book ai didi

javascript - 如何触发 rxjs observable

转载 作者:行者123 更新时间:2023-11-30 11:17:13 25 4
gpt4 key购买 nike

使用 rxjs v6

所以我有多个我想跟踪/观察的变量,当其中任何一个发生变化时,触发一个 Observable 来调用 API,然后根据这些变量更新其他内容。

我想我也许可以在 div 上触发一个事件来强制 observable 做某事,但它没有根据我想要的返回结果

例如

var a, b, c, d // if any updates, should trigger div "update" event

let obs = fromEvent(this.$refs.updater, "update")
.pipe(
switchMap(i => {return this.callAnAPI()})
)
obs.subscribe()

var update = new Event("update")
this.$refs.updater.dispatchEvent(update)

但是,可观察对象没有订阅方法。我试图修改我的其他 Observable 之一(有效)

fromEvent(input, "keyup")
.pipe(
map(i => i.currentTarget.value),
debounceTime(delay),
distinctUntilChanged(),
switchMap(value =>
{
this.page = 1
if (ajax)
{
return ajax
}
else
{
return this.axiosAjax({
path,
method,
data: {
...data,
[term]: value
}
})
}
})
)

最佳答案

根据您的问题标题,我推测您的自定义事件只是达到目的的一种手段。

如果是这样,我认为实际上没有必要。如果您希望对可观察对象产生“外部”影响(或触发),请使用 Subject .

例如:

const { fromEvent, merge, of, Subject } = rxjs;
const { switchMap, delay } = rxjs.operators;

// fake api
const fakeApi$ = of(Math.random()).pipe(
delay(2000),
);

// store a reference to the subject
const triggerApi$ = new Subject();

// apply behavior
const api$ = triggerApi$.pipe(
switchMap(
() => {
console.log('switching to api call');

// delegate to api call
return fakeApi$;
}
)
);

// activate (handle result)
api$.subscribe((result) => {
console.log('api result', result);
});

// some outside triggers
const fooClicks$ = fromEvent(document.getElementById('foo'), 'click');
const barClicks$ = fromEvent(document.getElementById('bar'), 'click');
const bazChanges$ = fromEvent(document.getElementById('baz'), 'change');

// combined
const updates$ = merge(fooClicks$, barClicks$, bazChanges$);

// activate
updates$.subscribe(triggerApi$);
<script src="https://unpkg.com/rxjs@6.2.1/bundles/rxjs.umd.min.js"></script>

<button id="foo">foo</button>
<button id="bar">bar</button>
<textarea id="baz"></textarea>

关于javascript - 如何触发 rxjs observable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51095874/

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