问题描述
我正在使用ReactiveFormsModule,并在const配置中定义了我所有的表单控件,包括简单的验证器,例如Validators.required
.
I am using ReactiveFormsModule and have defined all my form controls including simple validators such as Validators.required
within a const configuration.
我想向其中一个FormControls添加自定义验证器.
I wanted to add a custom validator to one of those FormControls.
我目前已在此配置中将自定义验证器添加为功能,并且运行良好,但它不属于此处,它确实需要存在于组件中,但是我不确定如何附加FormBuilder
配置了我所有的控件之后,手动创建一个自定义验证器.
I have currently added the custom validator as a function within this configuration, and it is working fine, but it does not belong here, it really needs to live within my component, but I'm not sure how I can just attach a custom validator manually after the FormBuilder
has configured all my controls.
请参阅下面的代码注释,如下所示:
* ??? *
this.form.get('site_id').add自定义变量
this.form.get('site_id').add custom valiator
这是我当前的配置代码.
import {FormControl, Validators, FormBuilder} from '@angular/forms';
var fb = new FormBuilder();
function exampleValidator(control: FormControl): { [s: string]: boolean} {
if (control.value === 'Example'){
return { example: true };
}
return null;
}
export const formConfig = fb.group({
'extract_batch_id': ['bbbbbbbbbbbbb',
[
Validators.required
]],
'site_id': ['blah',
[
Validators.required,
exampleValidator
]]
});
我有一条指令实际上应该存储自定义验证器
I have a directive that really should be storing the custom validator
职位搜索组件
import {Component, Input, OnInit, OnDestroy} from '@angular/core';
import {FormGroup, FormControl} from '@angular/forms';
import {ActivatedRoute} from '@angular/router';
import {Subscription} from 'rxjs';
import {Job} from '../../../models/job';
import {JobService} from '../../../services/api/job.service';
import {DebugService} from '../../../common/debug/debug.service';
import {formConfig} from './edit.form-config';
@Component({
selector: 'wk-job-search-edit',
template: require('./edit.html')
})
export class JobSearchEditComponent {
form: FormGroup;
job: Job;
@Input() jobId: number;
private subscription: Subscription;
constructor(
private route: ActivatedRoute,
private jobService: JobService,
private debug: DebugService){
// Configure form FormGroup via exported formConfig
this.form = formConfig;
// How do I Attach Here
// *** ??? ***
// this.form.get('site_id').add custom valiator
}
/*
exampleValidator(control: FormControl): { [s: string]: boolean} {
if (control.value === 'Example'){
return { example: true };
}
return null;
}
*/
}
JobSearch Edit.html
<form [formGroup]="form" (ngSubmit)="onSubmit()">
<button type="submit" class="btn btn-success" [disabled]="!form.valid">Save</button>
<div class="form-group" [ngClass]="{'has-danger':!form.get('extract_batch_id').valid}">
<label for="extract_batch_id" class="form-control-label">Extract Batch</label>
<input id="extract_batch_id" formControlName="extract_batch_id" type="text" placeholder="Extract Batch" class="form-control input-sm">
<div *ngIf="!form.get('extract_batch_id').valid">
<div class="form-control-feedback">Extract Batch is required?</div>
<small class="form-text text-muted">Please enter a Extract Batch, eg. xyz.</small>
</div>
</div>
<div class="form-group" [ngClass]="{'has-danger':!form.get('site_id').valid}">
<label for="site_id" class="form-control-label">Site</label>
<input id="site_id" formControlName="site_id" type="text" placeholder="Site" class="form-control input-sm">
<div *ngIf="!form.get('site_id').valid">
<div class="form-control-feedback">Site is required?</div>
<small class="form-text text-muted">Please enter a Site, eg. xyz.</small>
</div>
</div>
</form>
推荐答案
看看您的代码,您可以做什么:
Looking at your code, what you could do:
<div class="form-group" [ngClass]="{'has-danger':!form.get('site_id').valid}">
<label for="site_id" class="form-control-label">Site</label>
<input id="site_id" [formControl]="site_id_control" type="text" placeholder="Site" class="form-control input-sm">
<div *ngIf="!form.get('site_id').valid">
<div class="form-control-feedback">Site is required?</div>
<small class="form-text text-muted">Please enter a Site, eg. xyz.</small>
</div>
</div>
查看 [formControl] ="site_id_control"
然后,通过这种方式,您可以像这样从特定控件中添加或删除验证器:
Then, this way, you can add or remove the validators from that specific control like this:
在班级内部:
export class JobSearchEditComponent {
private site_id_control=this.form.controls['site_id'];
updateValidator(){
let exisitingValidators = this.site_id_control.validators;
this.site_id_control.setValidators(Validators.compose([...existingValidators , exampleValidator]))
// you probably also need this :
this.site_id_control.updateValueAndValidity();
}
}
这篇关于如何在Angular 2中将验证器动态添加到FormControl的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!