“Utiliser Les Donnes Passees Ein unmodaler Dans Sohn Propre Composant en Angular” Code-Antworten

Utiliser Les Donnes Passees Ein unmodaler Dans Sohn Propre Composant en Angular

export class ModalComponent { 

 passedData: typeOfData;     //declare it!

 someFunction() {     //or some  lifecycle hook 
  console.log(this.passedData)  //and then, use it!
 }

//rest of the ModalComponent 
}
Delightful Dragonfly

Utiliser Les Donnes Passees Ein unmodaler Dans Sohn Propre Composant en Angular

const modalRef = this.modalService.open(ModalComponent);

modalRef.componentInstance.passedData= this.dataToPass;

modalRef.result.then(result => {
  //do something with result
}                                                       
Delightful Dragonfly

Ähnliche Antworten wie “Utiliser Les Donnes Passees Ein unmodaler Dans Sohn Propre Composant en Angular”

Fragen ähnlich wie “Utiliser Les Donnes Passees Ein unmodaler Dans Sohn Propre Composant en Angular”

Weitere verwandte Antworten zu “Utiliser Les Donnes Passees Ein unmodaler Dans Sohn Propre Composant en Angular” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen