gpt4 book ai didi

Angular2 表格 :Validations, ngControl、ngModel 等

转载 作者:太空狗 更新时间:2023-10-29 17:02:00 26 4
gpt4 key购买 nike

致力于 angular2 beta Forms。经过大量搜索后发现没有任何用处。希望有人能帮助我。

基本上我有点困惑如何以正确的方式在 angular2 中使用表单(即使用 ngControl、ngFormControl 等)。我在这里创建了一个 plnkr

http://plnkr.co/edit/fictP28Vqn74YqrwM1jW?p=preview

这是我的 .html 代码:-

<form class="form-horizontal" id='myForm' role="form" [ngFormModel]="CreateGroup">

<div class="col-md-7">
Name: <input type="text" id="name" placeholder="Name" class="form-control" ngControl="name">
</div>
<div class="col-md-7">
Password: <input type="text" id="password" placeholder="password" class="form-control" ngControl="password">
</div>

<div class="col-md-7">
<input type="radio" name='type'>Btech
<input type="radio" name='type'>Mtech
</div>

<div class="col-md-7">
<input type="checkbox" >Math
<input type="checkbox">English
<input type="checkbox">Science
</div>
<br>
<div class="col-md-7">
<select #selectOption (change)='getValue(selectOption.value)' class='form-control'>
<option value='1'>One Value</option>
<option value='2'>two Value</option>
<option value='3'>Three Value</option>
</select>
</div>
</form>
<button type="button" (click)="addNewGroup(CreateGroup.value)" class="btn btn-primary btn-lg"> Create </button>

.ts 代码在这里:-

CreateGroup: FormBuilder;
constructor(fb: FormBuilder){
console.log('form called');

this.CreateGroup = fb.group({
'name': new Control(),
'password': new Control()
})
}
addNewGroup(value) {
console.log(value);
document.getElementById("myForm").reset();
}

getValue(value){
console.log(value);
}

我无法理解如何从完整表单中获取值作为对象。我的表单包括文本框、复选框、 radio 和选择选项。下面是我的几个问题。

Q1:- 如何在 angular2 中使用表单获取单选、复选框、选择的值。 (我不想像我在 plnkr 中使用的那样为选择选项调用 change 钩子(Hook))。

Q2:- 因为在提交数据表单控件后的 plnkr 中没有被重置。表格的控制仍然存在,但表格似乎已重置。那么如何在angular2中重置表单的控制。

Q3:- 在表单中使用验证的最佳方法是什么(如果有人有显示验证的 plnkr,请发布)。

我已经阅读了这篇关于表单的文章,但仍然没有成功使用单选复选框和选择选项。

http://blog.ng-book.com/the-ultimate-guide-to-forms-in-angular-2

最佳答案

将表单控件绑定(bind)到领域模型

在您的组件中初始化域模型:

constructor(){
this.student = new Student();
}

使用 ngModel使用双向模型绑定(bind)将表单控件绑定(bind)到域模型。

Name: <input [(ngModel)]="student.name" type="text">
Password: <input [(ngModel)]="student.password" type="text">

单击按钮时,将域模型作为参数传递:

<button type="button" (click)="addNewGroup(student)">Create</button>

实现addNewGroup方法。要重置表单,请使用新模型更新领域模型:

addNewGroup(student:Student) {
alert('added ' + student.name);
this.student = new Student();
}

Demo Plnkr

向表单添加验证器

要添加表单验证,请添加 ngFormModel到表单元素并添加 ngControl每个输入元素的装饰器( ngControl[ngFormControl]="studentForm.controls['name']" 的语法糖):

<form [ngFormModel]="studentForm" />
<input type="text" ngControl="name" />
<input type="text" ngControl="password" />
</form>

ngFormModel映射到 ControlGroup你的组件的属性。初始化 ControlGroup使用一个配置对象,其属性名称对应于 ngControl 中的值属性:

constructor(fb: FormBuilder){
this.student = new Student();
this.studentForm = fb.group({
'name': new Control(this.student.name, Validators.required),
'password': new Control(this.student.password, Validators.required)
});
}

在上面的例子中,内置的required验证器用于指示名称和密码是必填字段。然后您可以使用 valid 检查整个表单是否有效表单模型的属性:

addNewGroup(student:Student) {
if (this.studentForm.valid) {
alert('added ' + student.name);
this.student = new Student();
}
else {
alert('form is not valid!');
}
}

Demo Plnkr

显示验证消息

如果您想绑定(bind)到 View 中的验证消息,您可以将控件导出为本地模板变量并访问它的验证属性:有效、脏、待定、原始和错误对象。

 <input ngControl="name" #name="ngForm" type="text">
<span [hidden]="name.valid"><b>Required</b></span>

Demo Plnkr

如果您想创建自己的自定义验证器,请创建一个返回验证对象的方法,该对象的 boolean属性对应于验证错误。例如,您可以创建一个验证器来确保密码的第一个字母必须是数字:

interface ValidationResult {
[key:string]:boolean;
}
class PasswordValidator {
static startsWithNumber(control: Control): ValidationResult {
if ( control.value && control.value.length > 0){
if (isNaN(control.value[0]))
return { 'startsWithNumber': true };
}

return null;
}
}

将验证器组合成一个验证器并将其传递给 Control使用内置 Validators.compose 的构造函数:

this.studentForm = fb.group({
'name': new Control(this.student.name, Validators.required),
'password': new Control(this.student.password, Validators.compose([Validators.required,PasswordValidator.startsWithNumber])),
});

如果您在同一个 Control 上有多个验证器, 使用 errors区分它们的对象:

<input ngControl="password" #password="ngForm" />
<span [hidden]="!password.control.hasError('required')"><b>Required</b></span>
<span [hidden]="!password.control.hasError('startsWithNumber')"><b>Must start with number</b></span>

Demo Plnkr

绑定(bind)到单选按钮列表

在 Angular2 中,还没有内置支持绑定(bind)到单选按钮列表。查看这篇文章以了解如何执行此操作:

Angular2 - Radio Button Binding

关于Angular2 表格 :Validations, ngControl、ngModel 等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35383765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com