真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

angular如何實現(xiàn)基于ng-messages的表單驗證

這篇文章給大家分享的是有關(guān)angular如何實現(xiàn)基于ng-messages的表單驗證的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

創(chuàng)新互聯(lián)專注于淮北網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供淮北營銷型網(wǎng)站建設(shè),淮北網(wǎng)站制作、淮北網(wǎng)頁設(shè)計、淮北網(wǎng)站官網(wǎng)定制、小程序設(shè)計服務(wù),打造淮北網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供淮北網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

html

 
  name
  
    
  
     

ng-messages="myForm.myName.$error" 給出錯誤類型(required, char, exist, minlength)

error.html

必填
非法字符
名稱已存在
太短了

directive name-check 利用ngModel 的$validators,& $asyncValidators 添加自定義驗證

app.directive('nameCheck', nameCheck);

nameCheck.$inject = ['HttpService', '$q'];

function nameCheck(HttpService, $q){

  var NAME_REG = /^[a-zA-Z\u4e00-\u9fa5]+$/;

  return {
    restrict: 'A',
    require: 'ngModel',
    link:function($scope,element,attrs,ctrl){

      ctrl.$validators.char = function(modelValue, viewValue) {
        var value = modelValue || viewValue;
        if(!NAME_REG.test(value)){
          return false;
        }
        return true;
      };
      ctrl.$asyncValidators.exist = function(modelValue, viewValue){
        var value = modelValue || viewValue;
        var deferred = $q.defer();
        HttpService.get('api/users/' + value).then(function(res) {
          if(res.isExist){
            deferred.reject(false);

          }
          deferred.resolve(true);
        })

        return deferred.promise;
      }
    }
  }
}

感謝各位的閱讀!關(guān)于“angular如何實現(xiàn)基于ng-messages的表單驗證”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!


網(wǎng)站欄目:angular如何實現(xiàn)基于ng-messages的表單驗證
網(wǎng)址分享:http://weahome.cn/article/pcgieg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部