Subject and BehaviorSubject แตกต่างกันอย่างไร


250

ฉันไม่ชัดเจนเกี่ยวกับความแตกต่างระหว่างที่และSubject BehaviorSubjectมันเป็นเพียงแค่BehaviorSubjectมีgetValue()ฟังก์ชั่น?

คำตอบ:


311

BehaviorSubject เก็บค่าไว้หนึ่งค่า เมื่อสมัครเป็นสมาชิกมันจะปล่อยค่าทันที หัวเรื่องไม่ได้เก็บค่าไว้

ตัวอย่างหัวข้อ (ด้วย RxJS 5 API):

const subject = new Rx.Subject();
subject.next(1);
subject.subscribe(x => console.log(x));

เอาต์พุตคอนโซลจะว่างเปล่า

ตัวอย่าง BehaviorSubject:

const subject = new Rx.BehaviorSubject();
subject.next(1);
subject.subscribe(x => console.log(x));

เอาต์พุตคอนโซล: 1

นอกจากนี้:

  • BehaviorSubject สามารถสร้างขึ้นด้วยค่าเริ่มต้น: ใหม่ Rx.BehaviorSubject(1)
  • พิจารณาReplaySubjectว่าคุณต้องการให้หัวเรื่องเก็บค่ามากกว่าหนึ่งค่าหรือไม่

16
คุณหมายความว่าคุณต้องสมัครรับหัวเรื่องก่อน subject.next () เพื่อให้สิ่งนี้ใช้งานได้หรือไม่
Eric Huang

5
@eric สำหรับหัวเรื่องใช่ นั่นคือความแตกต่าง
onefootswill

9
โปรดทราบว่าคุณต้องส่งผ่านค่าแรกให้กับ
คอนสตรัคเตอร์

ถ้าเราสร้างหัวเรื่องด้วยบูลีนแม้หัวเรื่องจะปล่อยออกมา? const subject = new Subject <boolean> (); subject.next (จริง);
user2900572

ถ้ามันช่วยได้: Subjects = Event - BehaviorSubject = State;
Jonathan Stellwag

251

BehaviourSubject

BehaviourSubject จะส่งคืนค่าเริ่มต้นหรือมูลค่าปัจจุบันของการสมัครสมาชิก

var bSubject= new Rx.BehaviorSubject(0);  // 0 is the initial value

bSubject.subscribe({
  next: (v) => console.log('observerA: ' + v)  // output initial value, then new values on `next` triggers
});

bSubject.next(1);  // output new value 1 for 'observer A'
bSubject.next(2);  // output new value 2 for 'observer A', current value 2 for 'Observer B' on subscription

bSubject.subscribe({
  next: (v) => console.log('observerB: ' + v)  // output current value 2, then new values on `next` triggers
});

bSubject.next(3);

ด้วยการส่งออก:

observerA: 0
observerA: 1
observerA: 2
observerB: 2
observerA: 3
observerB: 3

เรื่อง

หัวเรื่องไม่ส่งคืนค่าปัจจุบันของการสมัครสมาชิก มันทริกเกอร์เฉพาะในการ.next(value)โทรและกลับ / ส่งออกvalue

var subject = new Rx.Subject();

subject.next(1); //Subjects will not output this value

subject.subscribe({
  next: (v) => console.log('observerA: ' + v)
});
subject.subscribe({
  next: (v) => console.log('observerB: ' + v)
});

subject.next(2);
subject.next(3);

ด้วยเอาต์พุตต่อไปนี้บนคอนโซล:

observerA: 2
observerB: 2
observerA: 3
observerB: 3

12
นอกจากนี้ยังมีความถูกต้องมากขึ้น: "BehaviourSubject จะส่งคืนค่าเริ่มต้นหรือค่าปัจจุบันในการสมัครสมาชิก" เป็นคำอธิบายที่ดีกว่า "A BehaviorSubject ถือค่าหนึ่งค่า"
Davy

1
ฉันใส่รหัสข้างต้นใน Stackblitz: stackblitz.com/edit/rxjs-subjectvsbeh พฤติกรรมubject
Fredrik_Macrobond

ผู้สังเกตการณ์อยู่ที่ไหน: 3
OPV

@OPV ผู้สังเกตการณ์ B: 3 อยู่ที่นั่นในขณะที่คุณโทรsubject.next(3);
Mohammed Safeer


6

มันอาจช่วยให้คุณเข้าใจ

import * as Rx from 'rxjs';

const subject1 = new Rx.Subject();
subject1.next(1);
subject1.subscribe(x => console.log(x)); // will print nothing -> because we subscribed after the emission and it does not hold the value.

const subject2 = new Rx.Subject();
subject2.subscribe(x => console.log(x)); // print 1 -> because the emission happend after the subscription.
subject2.next(1);

const behavSubject1 = new Rx.BehaviorSubject(1);
behavSubject1.next(2);
behavSubject1.subscribe(x => console.log(x)); // print 2 -> because it holds the value.

const behavSubject2 = new Rx.BehaviorSubject(1);
behavSubject2.subscribe(x => console.log('val:', x)); // print 1 -> default value
behavSubject2.next(2) // just because of next emission will print 2 

4

BehaviorSubjectเก็บในหน่วยความจำค่าสุดท้ายที่ถูกปล่อยออกมาโดยที่สังเกตได้ ปกติSubjectไม่ได้

BehaviorSubjectเหมือนกับReplaySubjectขนาดบัฟเฟอร์ 1

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.