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中的值验证绑定方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...