У меня есть наблюдаемое, которое испускает массив объектов.Какие операторы в конвейере мне нужно использовать, чтобы преобразовать их в Observable, чтобы я мог воздействовать на каждый объект?
Что мне нужно сделать для obs $, чтобы он излучал как obs2 $?
const obs$ = of([{ opponent: 'Walton', team: 'varsity', gametime: new Date() },
{ opponent: 'Scott', team: 'varsity', gametime: new Date() },
{ opponent: 'Dixie', team: 'varsity', gametime: new Date() },
{ opponent: 'Highlands', team: 'freshmen', gametime: new Date() }])
.pipe(
tap(console.log)
);
obs$.subscribe(a =>
console.log(a)
);
const obs2$ = of({ opponent: 'Walton', team: 'varsity', gametime: new Date() },
{ opponent: 'Scott', team: 'varsity', gametime: new Date() },
{ opponent: 'Dixie', team: 'varsity', gametime: new Date() },
{ opponent: 'Highlands', team: 'freshmen', gametime: new Date() })
.pipe(
tap(console.log)
);
obs2$.subscribe(a =>
console.log(a)
);