当我使用
时<input type='text' maxlength='25' required ng-model='ctrl.inputValue'>
Angular将几个类ng-valid
,ng-invalid
,ng-dirty
,ng-pristine
添加到允许显示有关验证结果的可视指示符的元素中。
Dart代码中有这些状态吗?
答案 0 :(得分:2)
好的,所以我刚才看到了这个:
采用以下代码(表格和名称很重要!):
<div test>
<form name="myForm">
<input type='text' name="myInput" maxlength='25' required ng-model='ctrl.inputValue'>
</form>
</div>
然后是以下指令/ controller / component:
@NgController (
selector: "[test]",
publishAs: "ctrl"
)
class TestController {
String inputValue;
Scope thisScope;
TestController (Scope this.thisScope) {
thisScope.$watch("ctrl.inputValue", () {
NgModel inputModel = thisScope["myForm"]["myInput"];
print(inputModel.invalid);
});
}
}
这将输出模型是否有效。
在此处查看NgModel的文档以获取其他字段: http://ci.angularjs.org/view/Dart/job/angular.dart-master/javadoc/angular.directive/NgModel.html