javascript - Why does piping a BehaviorSubject create an AnonymousSubject in RxJS? - Stack Overflow

When creating an RxJS BehaviorSubject, it stays a BehaviorSubject until it's pipe'd. As soon

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.

Share Improve this question edited Apr 24, 2018 at 16:35 Kevin Ghadyani asked Apr 24, 2018 at 3:53 Kevin GhadyaniKevin Ghadyani 7,3078 gold badges47 silver badges66 bronze badges 8
  • 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 a ReplaySubject 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 if lift returned a BehaviorSubject, what would you expect the value if the lifted subject to be? The original value or the plucked value? I think you should seriously reconsider using value. – cartant Commented Apr 24, 2018 at 4:43
  • 1 BehaviorSubject allows you to do subject.value. I can't do that with AnonymousSubject. – Kevin Ghadyani Commented Dec 18, 2019 at 19:46
 |  Show 3 more ments

1 Answer 1

Reset to default 10

This is happening due to lift called on Subject.

Let's take a deeper look at your example:

  1. You are instantiating a BehaviorSubject which extends Subject
  2. You are calling pluck operator which internally calls map operator
  3. map operator internally calls lift on BehaviorSubject which is delegated to Subject which then returns an AnonymousSubject

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743626862a4480679.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信