У меня вопрос о каналах наблюдаемых
предположим, у меня есть следующий код:
const skip$ = of(4);
const length$ = of(24);
const schoolId$ = of(1);
const source = combineLatest(skip$, length$, schoolId$).pipe(
map(([skip, length]) => `skip: ${skip}, length: ${length}`),
map(text => text ) // I need now schoolId, how can i get
);
на второй карте мне нужен schoolId. Как я могу получить schoolId, не делая этого:
const source = combineLatest(skip$, length$, schoolId$).pipe(
map(([skip, length, schoolId]) => ({text: `skip: ${skip}, length: ${length}`, schoolId})),
map(text => `${text.text}, schoolId: ${text.schoolId}` )
);
здесь у вас есть stackblitz , чтобы попробовать