[AngularJS] AngularJS系列(3) 中級篇之表單驗證

来源:http://www.cnblogs.com/neverc/archive/2016/09/28/5912340.html
-Advertisement-
Play Games

目錄 基本驗證 驗證插件messages 自定義驗證 基本驗證 以上展示了基本的ng驗證. 這裡重點介紹一下上面的特例: novalidate: 禁用H5自帶的驗證 ng-maxlength: 如果不寫ng,maxlength則直接限制最多輸入字元,稍微有點區別(IE9 + Chrome 測試) n ...


目錄

 

基本驗證

    <form name="form" novalidate ng-app>
        <span>{{form.$invalid}}</span>
        <span>{{form.$valid}}</span>
        <span>{{form.$dirty}}</span>
        <span>{{form.$pristine}}</span>
        <input type="text" ng-model="user" required />
        <input type="text" ng-model="pwd" required minlength="4" ng-maxlength="5" />
        <input type="text" ng-model="phone" required ng-pattern="/1[3|5|7|8|][0-9]{9}/" />
        <input type="email" ng-model="email" required />
        <input type="url" ng-model="url" required />
        <input type="number" ng-model="number" required />
        <div>
            <button type="reset" ng-disabled="form.$pristine">重置</button>
            <button type="submit" ng-disabled="form.$invalid">提交</button>
        </div>
    </form>

以上展示了基本的ng驗證.

這裡重點介紹一下上面的特例:

novalidate:   禁用H5自帶的驗證

ng-maxlength: 如果不寫ng,maxlength則直接限制最多輸入字元,稍微有點區別(IE9 + Chrome 測試)

ng-pattern:  通過正則驗證,如果不寫ng開頭,無驗證效果.

註:要啟用驗證 同時需要綁定一個ng-model

 

屬性類   描述
$valid ng-valid Boolean 告訴我們這一項當前基於你設定的規則是否驗證通過
$invalid ng-invalid Boolean 告訴我們這一項當前基於你設定的規則是否驗證未通過
$pristine ng-pristine Boolean 如果表單或者輸入框沒有使用則為True
$dirty ng-dirty Boolean 如果表單或者輸入框有使用到則為True

訪問表單屬性

  • 方位表單: <form name>.<angular property>

  • 訪問一個輸入框: <form name>.<input name>.<angular property>

 

 

驗證插件

在介紹messages插件之前,我們看下本來的驗證提示

    <form name="form" ng-app novalidate>
        <span>{{form.user.$error.required?'user該項必填':''}}</span>
        <input type="text" ng-model="user" name="user" required />
        <span>{{form.pwd.$error.required?'pwd該項必填':''}}</span>
        <input type="text" ng-model="pwd" name="pwd" required />
        <span>{{form.info.$error.required?'info該項必填':''}}</span>
        <input type="text" ng-model="info" name="info" required />
        <span>{{form.age.$error.required?'age該項必填':''}}</span>
        <input type="text" ng-model="age" name="age" required />
        <div>
            <button type="submit" ng-disabled="form.$invalid">提交</button>
        </div>
    </form>

這裡只是判斷了require 當我們的代碼 我們重覆寫了很多3元表達式

 

messages插件就是更友好的解決重覆的問題

    <form name="form" ng-app="myApp" novalidate>
        <input type="email" ng-model="user" name="username" required minlength="4" />
        <div ng-messages="form.username.$error" ng-messages-multiple>
            <div ng-message="required">該項必填</div>
            <div ng-message="minlength">低於最低長度</div>
            <div ng-message="email">應為email</div>
        </div>
    </form>
    <script src="Scripts/angular.min.js"></script>
    <script src="Scripts/angular-messages.min.js"></script>
    <script>
        angular.module('myApp', ['ngMessages']);
    </script>

Nuget:Install-Package AngularJS.Messages 

 

自定義驗證

通過基本的驗證方式,我們已經能夠解決大部分的驗證問題.但項目中永遠充滿著各種各樣的需求.

在ng中的自定義驗證,一般通過指令的形式創建.

    <form name="form" ng-app="myApp" novalidate>
        <input type="email" ng-model="user" name="username" required ensure-unique minlength="4" />
        <div ng-messages="form.username.$error" ng-messages-multiple>
            <div ng-message="required">該項必填</div>
            <div ng-message="minlength">低於最低長度</div>
            <div ng-message="email">應為email</div>
            <div ng-message="unique">用戶名已存在</div>
        </div>
    </form>

在上面的messages插件Demo中,新建一行驗證用戶名已存在 以及 在input上添加了ensure-unique指令

同時,我們需要在js中定義ensure-unique指令:

angular.module('myApp', ['ngMessages']).directive('ensureUnique', ['$http', '$timeout', '$window', function ($http, $timeout, $window) {
            return {
                restrict: "A",
                require: 'ngModel',
                link: function (scope, ele, attrs, ngModelController) {
                    scope.$watch(attrs.ngModel, function (n) {
                        if (!n) return;
                        $timeout.cancel($window.timer);
                        $window.timer = $timeout(function () {
                            $http({
                                method: 'get',
                                url: '/api/checkusername/', //根據換成自己的url
                                params: {
                                    "username": n
                                }
                            }).success(function (data) {
                                ngModelController.$setValidity('unique', data.isUnique); //這個取決於你返回的,其實就是返回一個是否正確的欄位,具體的這塊可以自己修改根據自己的項目
                            }).error(function (data) {
                                ngModelController.$setValidity('unique', false);
                            });
                        }, 500);
                    });
                }
            };
        }]);

指令不是本節重點內容,這裡簡單說下

ngModelController.$setValidity('unique', bool);

通過該API可以設置$error.unique.

setValidity為true,則$error.unique為false

 

本文地址:http://www.cnblogs.com/neverc/p/5912340.html


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、浮動導航條 ...
  • ...
  • 使用 @ 定義變數變數可以做運算@color : #000;@width : 1000px;使用 & 表示當前類.box{&:hover{color : #000;}}css 可以嵌套ul{display : block;li{float : left;a{font-size : 18px;}}}繼 ...
  • 系列文章 -- ES6筆記系列 很久很久以前,在做Node.js聊天室,使用MongoDB數據服務的時候就遇到了多重回調嵌套導致代碼混亂的問題。 JS非同步編程有利有弊,Promise的出現,改善了這一格局,讓非同步編程表現出類似“同步式代碼”的形式,更好地體現了它的價值。 一、基本概念 1. Prom ...
  • 今天看到一篇文章關於清除浮動的,突然間腦袋短路了,咦?為什麼要清除浮動?原諒我的無知,搜了下原來是這樣,又倒騰出原來的筆記,唉,本來就有記錄啊,而且也會經常用到,用的久了連原理都忘了。恩,防止自己再犯同樣的錯誤,我還是自己總結整理出來吧!話不多說,代碼為證! 恩,各個瀏覽器運行的效果圖如下: 其中A ...
  • 封裝Encapsulation 如下代碼,這就算是封裝了 (function (windows, undefined) { var i = 0;//相對外部環境來說,這裡的i就算是封裝了 })(window, undefined); 繼承Inheritance (function (windows, ...
  • 什麼是閉包?先看一段代碼: ? 1 2 3 4 5 6 7 8 9 10 function a(){ var n = 0; function inc() { n++; console.log(n); } inc(); inc(); } a(); //控制台輸出1,再輸出2 ? 1 2 3 4 5 6 ...
  • 1.工廠模式 缺點:①無法確定對象的類型(因為都是Object)。 ②創建的多個對象之間沒有關聯。 2.構造函數 缺點:①多個實例重覆創建方法,無法共用。 ②多個實例都有sayName方法,但均不是同一個Function的實例。 3.原型方法 缺點:①無法傳入參數,不能初始化屬性值。 ②如果包含引用 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...