作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的非常基本的 Angular 4 表单不会使用“required”属性验证输入(文本)字段。具有“required”属性的输入应该由浏览器进行验证,就像没有 Angular 的 html 5 默认行为一样。 Angular 4 有什么变化吗?相同的代码在 Angular 2 上运行良好。
<form (ngSubmit)="onSubmit()" #testForm="ngForm">
<input type="text" id="test1" name="test1" [(ngModel)]="test" required>
<input type="text" id="test2" name="test2" [(ngModel)]="test" [required]="true">
<input type="text" id="test3" name="test3" [(ngModel)]="test" [attr.required]="true">
<button type="submit">submit</button>
</form>
尝试一下这个plunkr: http://plnkr.co/edit/Wow7NUhaC0KjHtOfVQ2c?p=preview
最佳答案
我自己找到的...
从 Angular 2 到 4 有一个变化。在 Angular 4 下,我必须设置“ngNativeValidate”,这是 Angular 2 下的默认行为。
这将与默认的 html5 验证器“必需”一起使用:
<form (ngSubmit)="onSubmit()" #testForm="ngForm" ngNativeValidate>
<input type="text" id="test1" name="test1" [(ngModel)]="test" required>
<input type="text" id="test2" name="test2" [(ngModel)]="test" [required]="true">
<input type="text" id="test3" name="test3" [(ngModel)]="test" [attr.required]="true">
<button type="submit">submit</button>
</form>
Corrected Plunkr Someones reported Angular issue which pointed me to the failure
关于html - Angular4 "required"表单提交时未检查属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44257946/
在我们的数据库表上,我们使用两个唯一的非聚集索引来创建跨四个字段的唯一约束。我们使用两个,因为其中一个字段 ZipCode 是一个可为空的字段。如果表中存在一条包含 ZipCode 的 null 条目
我刚刚开始学习 Rails 3 教程,以便对框架有一点熟悉,但我在生成 schema.rb 时遇到了问题。我的操作系统是 Windows 7 x64、Ruby 1.9.2、MySQL2 gem 0.2
我是一名优秀的程序员,十分优秀!