箭头函数格式:(参数): 返回值 => {函数体}
例:
(control: AbstractControl): {[key: string]: any} | null => {
const forbidden = nameRe.test(control.value);
return forbidden ? {'forbiddenName': {value: control.value}} : null;
}
箭头函数格式:(参数): 返回值 => {函数体}
例:
(control: AbstractControl): {[key: string]: any} | null => {
const forbidden = nameRe.test(control.value);
return forbidden ? {'forbiddenName': {value: control.value}} : null;
}