微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Angularjs之ngModel中的值验证绑定方法

众所周知,在Angular中ngModel为动态双向绑定,存在两种方式。

例如,

方式一:

在html中,

rush:js;">

在controller中

rush:js;"> $scope.check = function (searchText) { console.log(searchText); }

方式二:

引用stackoverflow的一句话,

rush:xhtml;"> “If you use ng-model,you have to have a dot in there.” Make your model point to an object.property and you'll be good to go.

在html中,

rush:js;">

在controller中,

rush:js;"> $scope.formData = {}; $scope.check = function () { console.log($scope.formData.searchText.$modelValue); }

但是我们常常会对ngModel当中的值进行验证,例如,

rush:js;">
rush:js;">

发现ngModel当中的password.new_password不能实时绑定到controller中,原因为ngModel的值并没有符合pattern的规则。若符合规则,则正常绑定传递。

以上这篇Angularjs之ngModel中的值验证绑定方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文地址:https://www.jb51.cc/js/30234.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐