admin管理员组文章数量:1340297
When creating an RxJS BehaviorSubject
, it stays a BehaviorSubject
until it's pipe
'd. As soon a pipe
'd version is returned, it bees an AnonymousSubject
.
Examples:
// Instance of `BehaviorSubject`
const behaviorSubject$ = new BehaviorSubject({ someValue: null })
// Suddenly bees an Anonymous Subject
const anonymousSubject$ = (
behaviorSubject$
.pipe(
pluck('someValue')
)
)
// Also suddenly bees an Anonymous Subject
const anonymousSubject$ = (
new BehaviorSubject({ someValue: null })
.pipe(
pluck('someValue')
)
)
When creating an RxJS BehaviorSubject
, it stays a BehaviorSubject
until it's pipe
'd. As soon a pipe
'd version is returned, it bees an AnonymousSubject
.
Examples:
// Instance of `BehaviorSubject`
const behaviorSubject$ = new BehaviorSubject({ someValue: null })
// Suddenly bees an Anonymous Subject
const anonymousSubject$ = (
behaviorSubject$
.pipe(
pluck('someValue')
)
)
// Also suddenly bees an Anonymous Subject
const anonymousSubject$ = (
new BehaviorSubject({ someValue: null })
.pipe(
pluck('someValue')
)
)
I experience this same issue with ReplaySubject
as well. I can't seem to pipe through the subject and return that subject back. It always converts to an AnonymousSubject
. I think what I'm looking for here is Promise-like behavior where I can subscribe to this observable from anywhere and grab the one value passed into it.
- 1 Do you have code that cares? If you do you shouldn't. – Aluan Haddad Commented Apr 24, 2018 at 3:58
-
I need to do
behaviorSubject$.value
. Should I be using aReplaySubject
instead? – Kevin Ghadyani Commented Apr 24, 2018 at 3:59 - You need to pass an argument to BehaviorSubject() – siva636 Commented Apr 24, 2018 at 4:01
-
1
IMO using
value
is a code smell and even iflift
returned aBehaviorSubject
, what would you expect thevalue
if the lifted subject to be? The original value or the plucked value? I think you should seriously reconsider usingvalue
. – cartant Commented Apr 24, 2018 at 4:43 -
1
BehaviorSubject
allows you to dosubject.value
. I can't do that withAnonymousSubject
. – Kevin Ghadyani Commented Dec 18, 2019 at 19:46
1 Answer
Reset to default 10This is happening due to lift
called on Subject
.
Let's take a deeper look at your example:
- You are instantiating a
BehaviorSubject
which extendsSubject
- You are calling
pluck
operator which internally callsmap
operator map
operator internally callslift
onBehaviorSubject
which is delegated toSubject
which then returns anAnonymousSubject
本文标签: javascriptWhy does piping a BehaviorSubject create an AnonymousSubject in RxJSStack Overflow
版权声明:本文标题:javascript - Why does piping a BehaviorSubject create an AnonymousSubject in RxJS? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743626862a2512431.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论