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
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743626862a4480679.html
评论列表(0条)