Rx Devtools 这是预览版 用法 import { Observable } from 'rxjs' ; Observable . prototype . debug = window . rxDevTool ( ) ; Observable . interval ( 1000 ) . take ( 5 ) . debug ( 'source1' ) . map ( x => x + 1 ) . debug ( 'source2' ) . subscribe ( function ( ) { } )