mapTo

연산자(operator) 정의: mapTo(value: any): Observable

Map emissions to constant value.

Examples

Example 1: Map every emission to string

( jsBin | jsFiddle )

//emit value every two seconds
const source = Rx.Observable.interval(2000);
//map all emissions to one value
const example = source.mapTo('HELLO WORLD!');
//output: 'HELLO WORLD!'...'HELLO WORLD!'...'HELLO WORLD!'...
const subscribe = example.subscribe(val => console.log(val));
Example 2: Mapping clicks to string

( jsBin | jsFiddle )

//emit every click on document
const source = Rx.Observable.fromEvent(document, 'click');
//map all emissions to one value
const example = source.mapTo('GOODBYE WORLD!');
//output: (click)'GOODBYE WORLD!'...
const subscribe = example.subscribe(val => console.log(val));

Additional Resources


:file_folder: Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/operator/mapTo.ts

results matching ""

    No results matching ""