在Dart代码中获取ng-model验证状态

时间:2014-02-16 14:50:07

标签: dart angular-dart

当我使用

<input type='text' maxlength='25' required ng-model='ctrl.inputValue'>

Angular将几个类ng-validng-invalidng-dirtyng-pristine添加到允许显示有关验证结果的可视指示符的元素中。

Dart代码中有这些状态吗?

1 个答案:

答案 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