我写了一段代码,我没有在哪里写 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应用程序中构建时显示错误消息