Update several component properties with a single http call using observables
问题 Previous post related : Angular2 : Reduce number of Http calls The context is still the same : I'm trying to setup a "dico" component, that need an ID and a Language in input, and should give me some translated Text from my database. dico.component.ts : @Component({ selector: 'dico', template: `{{text}}` // => The text I'm trying to update }) class Dico implements AfterViewInit { // Définition des paramètres et du texte en sortie @Input() private dicoID: string; @Input() private dicoLang: