以数组角度4添加项目

前端之家收集整理的这篇文章主要介绍了以数组角度4添加项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码

export class FormComponent implements OnInit {
name: string;
empoloyeeID : number;
empList: Array<{name: string,empoloyeeID: number}> = []; 
  constructor() {

   }

  ngOnInit() {
  }
onEmpCreate(){
  console.log(this.name,this.empoloyeeID);
this.empList.push.apply(this.name,this.empoloyeeID);
this.name ="";
this.empoloyeeID = 0;
}
}

但这个投掷错误

CreateListFromArrayLike called on non-object

还有什么方法可以创建自定义类和使用的对象列表,而不是在这里定义数组.

谢谢

解决方法

是的,有办法做到这一点.

首先声明一个类.

//anyfile.ts
export class Custom
{
  name: string,empoloyeeID: number
}

然后在您的组件中导入该类

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; 
 }
}

另一种方法是接口读取文档一次 – https://www.typescriptlang.org/docs/handbook/interfaces.html

结帐这个问题,非常有趣 – When to use Interface and Model in TypeScript / Angular2

猜你在找的Angularjs相关文章