ANGULAR RXJS : запустите два объекта поведения, верните неиспользованный
#angular #rxjs Вопрос: Я хочу запустить два объекта поведения вместе, ngOnInit(): void { this.getProjects(); this.getEmployees(); this.initForm(); if(this.local_data.action === 'Update') { this.filForm(); } } getEmployees() { this._employeeService.getAllemployee(); this.subEmployee$ = this._employeeService.employee$.subscribe( (employees)…