“Angular Fügen Sie Objekt zum Array hinzu” Code-Antworten

Angular Fügen Sie Objekt zum Array hinzu

import {Custom} from '../path/to/anyfile.ts'
.....
export class FormComponent implements OnInit {
 name: string;
 empoloyeeID : number;
 empList: Array<Custom> = [];
 constructor() {

 }

 ngOnInit() {
 }
 onEmpCreate(){
   //console.log(this.name,this.empoloyeeID);
   let customObj = new Custom();
   customObj.name = "something";
   customObj.employeeId = 12; 
   this.empList.push(customObj);
   this.name ="";
   this.empoloyeeID = 0; 
 }
}
2 Programmers 1 Bug

So hängen Sie Element in Array Angular an

let object = []
object.push('string');
Hungry Hedgehog

Ähnliche Antworten wie “Angular Fügen Sie Objekt zum Array hinzu”

Fragen ähnlich wie “Angular Fügen Sie Objekt zum Array hinzu”

Weitere verwandte Antworten zu “Angular Fügen Sie Objekt zum Array hinzu” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen