W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
將來自源的所有通知表示為 Observable,next
將其標記為Notification
對象中原始類型的排放。
materialize<T>(): OperatorFunction
<T, Notification
<T>>
沒有參數(shù)。
OperatorFunction<T, Notification<T>>
:一個 Observable 發(fā)出 Notification
對象,該對象包裝帶有源數(shù)據(jù)的原始 Observable 的元數(shù)據(jù)。
包裹物next
,error
并且complete
排放 Notification
的目的,發(fā)射為next
在輸出觀察到。
materialize
返回可觀察到的發(fā)射一個next
為每個通知 next
,error
或complete
源可觀察的發(fā)射。當(dāng)源 Observable 發(fā)出時complete
,輸出 Observable 將next
作為類型為“ complete” 的 Notification 發(fā)出,然后也將發(fā)出complete
。當(dāng)源 Observable 發(fā)出時error
,輸出將發(fā)出next
“錯誤”類型的通知,然后發(fā)出complete
。
該運算符對于生成可觀察源的元數(shù)據(jù)很有用,將其作為next
排放量消耗。與結(jié)合使用 dematerialize
。
將錯誤的可觀察者轉(zhuǎn)換為可觀察者通知
import { of } from 'rxjs';
import { materialize, map } from 'rxjs/operators';
const letters = of('a', 'b', 13, 'd');
const upperCase = letters.pipe(map(x => x.toUpperCase()));
const materialized = upperCase.pipe(materialize());
materialized.subscribe(x => console.log(x));
// Results in the following:
// - Notification {kind: "N", value: "A", error: undefined, hasValue: true}
// - Notification {kind: "N", value: "B", error: undefined, hasValue: true}
// - Notification {kind: "E", value: undefined, error: TypeError:
// x.toUpperCase is not a function at MapSubscriber.letters.map.x
// [as project] (http://1…, hasValue: false}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: