angular 2 group validation
问题 Given simple registration form: this.registerForm = this.formBuilder.group({ email:['', Validators.compose([ Validators.required, Validators.pattern('.+@.+\..+'), ]), this.validators.isTaken], matchingPassword: this.formBuilder.group({ password: ['', Validators.compose([ Validators.required, Validators.maxLength(30), Validators.minLength(8) ])], passwordConfirmation: ['', Validators.compose([ Validators.required, ])] }, {validator: this.validators.match}) }) I'm trying to validate password