我们在angular2中实现AbstractControl的位置

时间:2016-12-21 05:09:22

标签: angular ionic2 abstract-class

我写了一段代码,我没有在哪里写 AbstractControl

这是代码

 @Component({
     selector: 'page-sinup',
     templateUrl: 'home.html'
 })

 export const Validate = (control: AbstractControl): { [key: string]: any } => {
  const firstname    = control.get('firstname');
  const useridphone  = control.get('useridphone');
  const password     = control.get('password');
  const email        = control.get('email');
  };
  export class SinupPage {
  }

我在第一堂课中写了抽象控制,显示错误 {[key:string]:any} => {} firstname未定义所有字段都显示错误,我没有在哪里编写代码,用于在ionic2应用程序中构建时显示错误消息

0 个答案:

没有答案