angularjs學習第四天筆記(第一篇:簡單的表單驗證)

来源:https://www.cnblogs.com/xiaoXuZhi/archive/2018/08/23/angularjs_formCheck001.html
-Advertisement-
Play Games

angularjs表單驗證,今天主要學習了angularjs中的表單驗證的一些基本概念及其簡單應用(簡單的實現註冊表單驗證) ...


您好,我是一名後端開發工程師,由於工作需要,現在系統的從0開始學習前端js框架之angular,每天把學習的一些心得分享出來,如果有什麼說的不對的地方,請多多指正,多多包涵我這個前端菜鳥,歡迎大家的點評與賜教。謝謝!

  第四天,簡單的表單驗證,今天主要學習了angularjs中的表單驗證的一些基本概念及其簡單應用

  第一、表單驗證的簡單理解

    表單驗證是angularjs中比較重要的一個核心功能

    表單驗證可以結合html5的驗證特殊使用,當然也可以禁用瀏覽器對錶單的預設驗證,添加屬性【novalidate】即可

    表單驗證畢竟只是前端js驗證,在後端代碼中一定需要對其數據的合法性做再次驗證

    angularjs提供了一些常見的系統驗證,當然也可以自定義表單驗證

  第二、簡單瞭解學習anjularjsz自帶的表單驗證

    1.必填驗證:required,直接添加required屬性即可

    2.最小長度:ng-minlength,使用ng-minlength=“最小長度值”

    3.最大長度:ng-maxlength,使用ng-maxlength=“最大長度值”

    4.模式匹配:ng-pattern,使用ng-pattren="模式匹配的正則表達式"

    5.郵箱:email,使用直接給文本框的type屬性值賦值為email即可--type="email"

    6.數字:number,使用直接給文本框的type屬性值賦值為number即可--type="number"

    7.網頁地址:url,使用直接給文本框的type屬性值賦值為url即可--type="url" 

  第四、表單中的控制變數

    1.表單的屬性值訪問方式為:表單名稱.文本框名稱.屬性名稱

    2.表單驗證中用到的表單屬性包括如下:

      未修改的表單:屬性名稱關鍵詞【pristine】,bool類型,如果為修改為ture

      用戶修改過的表單:屬性關鍵詞【dirty】,bool類型,只有修改了就為true

      合法的表單:屬性關鍵詞【valid】,bool類型,只有當表單內容合法才為true

      不合法表單:屬性關鍵詞【invalid】,bool類型,只要有不合法的都為true

      錯誤:屬性關鍵詞【error】,bool類型,只要有不合法的都為true

 

  第五、簡單實現註冊頁面的表單驗證

    在實現的方式上,根據不同的體驗,大致有三種方式

    其一、對錶單輸入實時驗證,只有表單驗證都通過,才提交表單

       實現方式:通過控制提交按鈕的可用性來實現

              ng-disabled="loginForm.$invalid"

      下麵舉例一個練習實例:

  

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
    <style type="text/css">
        .oneCount {
            width:1000px;
            height:60px;
            line-height:60px;
            border-bottom:1px solid blue;
        }
            .oneCount .titleCount {
                float: left;
                width: 150px;
                text-align: right;
            }

            .oneCount .valueCount {
                float: left;
                width: 300px;
                text-align: right;
            }
                .oneCount .valueCount input {
                    width: 300px;
                }

            .oneCount .alertCount {
                float: left;
                width: 520px;
                margin-left:20px;
            }

            .oneCount .alertCount span{
                float: left;
                margin-left: 10px;
                color:#ff0000;
            }

        .success {
        color:#19e1cf !important;
        }

        input .ng-pristine {
            color: #808080;
            border-bottom: 1px solid #ff0000;
        }
        input .ng-dirty {
            color: #000000;
        }
        input .ng-valid {
            color: #000000;
        }
        input .ng-invalid {
            color: #ff0000;
        }
    </style>
</head>
<body ng-app="myApp" ng-controller="myContro">
    <form name="loginForm" novalidate ng-submit="submitForm()">
        <div class="oneCount">
            <div class="titleCount">賬號:</div>
            <div class="valueCount"> 
                <input type="text" name="acount" ng-model="user.acount" placeholder="必填:賬號必須由數字字母組合,長度在6-20"
                       required="required" ng-minlength="6" ng-maxlength="20" ng-pattern="/^[0-9a-zA-Z]+$/"/>
            </div>
            <div class="alertCount">
                <span class="warning">*</span>
                <span class="warning" ng-show="loginForm.acount.$dirty&&loginForm.acount.$error.required">acount必填</span>
                <span class="warning" ng-show="loginForm.acount.$error.minlength">最少長度為6</span>
                <span class="warning" ng-show="loginForm.acount.$error.maxlength">最大長度為20</span>
                <span class="warning" ng-show="loginForm.acount.$error.pattern">賬號格式不符合要求(只能由數字和字母組成)</span>
                <span class="success" ng-show="loginForm.acount.$dirty&&loginForm.acount.$valid">賬號輸入正確</span>
            </div>
        </div>
        <div class="oneCount">
            <div class="titleCount">姓名:</div>
            <div class="valueCount">
                <input type="text" name="name" ng-model="user.name" placeholder="請輸入姓名" ng-maxlength="20" />
            </div> 
            <div class="alertCount">
                <span class="warning" ng-show="loginForm.name.$error.maxlength">姓名最大長度為20</span>
                <span class="success" ng-show="loginForm.name.$dirty&&loginForm.name.$valid">姓名輸入正確</span>
            </div>
            </div>
            <div class="oneCount">
                <div class="titleCount">年齡:</div>
                <div class="valueCount">
                    <input type="number" name="age" ng-model="user.age" placeholder="請輸入年齡" />
                </div>
            </div>
            <div class="oneCount">
                <div class="titleCount">密碼:</div>
                <div class="valueCount">
                    <input type="password" name="pass" ng-model="user.pass" placeholder="必填:請輸入密碼,密碼長度在6-20"
                           required="required" ng-minlength="6" ng-maxlength="20" />
                </div>
                <div class="alertCount">
                    <span class="warning">*</span>
                    <span class="warning" ng-show="loginForm.pass.$dirty&&loginForm.pass.$error.required">密碼必填</span>
                    <span class="warning" ng-show="loginForm.pass.$error.minlength">最少長度為6</span>
                    <span class="warning" ng-show="loginForm.pass.$error.maxlength">最大長度為20</span>
                    <span class="success" ng-show="loginForm.pass.$dirty&&loginForm.pass.$valid">密碼輸入正確</span>
                </div>
                <div class="oneCount">
                    <div class="titleCount"></div>
                    <div class="valueCount">
                        <input type="submit" value="提交" ng-disabled="loginForm.$invalid" style="width:40px;" />
                    </div>
                </div>
</form>
</body>
</html>
<script src="Scripts/angular.js"></script>
<script type="text/javascript">
    var app = angular.module("myApp", []);
    app.controller("myContro", function ($scope) {
        $scope.user = {
            acount: "",
            name: "",
            age: "",
            pass: "",
            rePass: ""
        };

        //提交表單接受函數
        $scope.submitForm = function () {
           //// 表單真實提交邏輯
            alert("提交表單");
        }
    });

</script>    

 

    其二、先觸發提交表單事件,在統一對錶單數據驗證,只有同驗證通過才提交數據到後臺處理

       實現方式:可以給表單添加一個屬性,初始化賦值為false,只有提交後才賦值為ture

            驗證結果提示信息,只有該屬性值為true,才顯示顯示錯誤信息

  

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
    <style type="text/css">
        .oneCount {
            width:1000px;
            height:60px;
            line-height:60px;
            border-bottom:1px solid blue;
        }
            .oneCount .titleCount {
                float: left;
                width: 150px;
                text-align: right;
            }

            .oneCount .valueCount {
                float: left;
                width: 300px;
                text-align: right;
            }
                .oneCount .valueCount input {
                    width: 300px;
                }

            .oneCount .alertCount {
                float: left;
                width: 520px;
                margin-left:20px;
            }

            .oneCount .alertCount span{
                float: left;
                margin-left: 10px;
                color:#ff0000;
            }

        .success {
        color:#19e1cf !important;
        }

        input .ng-pristine {
            color: #808080;
            border-bottom: 1px solid #ff0000;
        }
        input .ng-dirty {
            color: #000000;
        }
        input .ng-valid {
            color: #000000;
        }
        input .ng-invalid {
            color: #ff0000;
        }
    </style>
</head>
<body ng-app="myApp" ng-controller="myContro">
    <form name="loginForm" novalidate ng-submit="submitForm()">
        <div class="oneCount">
            <div class="titleCount">賬號:</div>
            <div class="valueCount"> 
                <input type="text" name="acount" ng-model="user.acount" placeholder="必填:賬號必須由數字字母組合,長度在6-20"
                       required="required" ng-minlength="6" ng-maxlength="20" ng-pattern="/^[0-9a-zA-Z]+$/"/>
            </div>
            <div class="alertCount">
                <span class="warning">*</span>
                <span class="warning" ng-show="loginForm.submitted&&loginForm.acount.$dirty&&loginForm.acount.$error.required">acount必填</span>
                <span class="warning" ng-show="loginForm.submitted&&loginForm.acount.$error.minlength">最少長度為6</span>
                <span class="warning" ng-show="loginForm.submitted&&loginForm.acount.$error.maxlength">最大長度為20</span>
                <span class="warning" ng-show="loginForm.submitted&&loginForm.acount.$error.pattern">賬號格式不符合要求(只能由數字和字母組成)</span>
                <span class="success" ng-show="loginForm.submitted&&loginForm.acount.$dirty&&loginForm.acount.$valid">賬號輸入正確</span>
            </div>
        </div>
        <div class="oneCount">
            <div class="titleCount">姓名:</div>
            <div class="valueCount">
                <input type="text" name="name" ng-model="user.name" placeholder="請輸入姓名" ng-maxlength="20" />
            </div> 
            <div class="alertCount">
                <span class="warning" ng-show="loginForm.submitted&&loginForm.name.$error.maxlength">姓名最大長度為20</span>
                <span class="success" ng-show="loginForm.submitted&&loginForm.name.$dirty&&loginForm.name.$valid">姓名輸入正確</span>
            </div>
            </div>
        <div class="oneCount">
                <div class="titleCount">年齡:</div>
                <div class="valueCount">
                    <input type="number" name="age" ng-model="user.age" placeholder="請輸入年齡" />
                </div>
            </div>
        <div class="oneCount">
                <div class="titleCount">密碼:</div>
                <div class="valueCount">
                    <input type="password" name="pass" ng-model="user.pass" placeholder="必填:請輸入密碼,密碼長度在6-20"
                           required="required" ng-minlength="6" ng-maxlength="20" />
                </div>
                <div class="alertCount">
                    <span class="warning">*</span>
                    <span class="warning" ng-show="loginForm.submitted&&loginForm.pass.$dirty&&loginForm.pass.$error.required">密碼必填</span>
                    <span class="warning" ng-show="loginForm.submitted&&loginForm.pass.$error.minlength">最少長度為6</span>
                    <span class="warning" ng-show="loginForm.submitted&&loginForm.pass.$error.maxlength">最大長度為20</span>
                    <span class="success" ng-show="loginForm.submitted&&loginForm.pass.$dirty&&loginForm.pass.$valid">密碼輸入正確</span>
                </div>
                <div class="oneCount">
                    <div class="titleCount"></div>
                    <div class="valueCount">
                        <input type="submit" value="提交" style="width:40px;" />
                    </div>
                </div>
            </div>
</form>
</body>
</html>
<script src="Scripts/angular.js"></script>
<script type="text/javascript">
    var app = angular.module("myApp", []);
    app.controller("myContro", function ($scope) {
        $scope.user = {
            acount: "",
            name: "",
            age: "",
            pass: "",
            rePass: ""
        };
        $scope.submitted = false;
        //提交表單接受函數
        $scope.submitForm = function () {
            if ($scope.loginForm.$valid) {
                //// 表單數據真實提交邏輯
            } else {
                $scope.loginForm.submitted = 	   

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

-Advertisement-
Play Games
更多相關文章
  • 幫助類: using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using MySq... ...
  • 1.前言 react-natvie中文網地址:https://reactnative.cn/ 現在前端的開發環境基本都需要先搭建環境.react-natvie環境搭建跟著官網的文檔流程走就行了。但是有些是沒有必要的。 2.搭建環境 2.1選擇平臺 這裡需要註意的就是windows的電腦只能開發and ...
  • 首先,為什麼我們要定義一個新類呢?按照我的理解,就是為了抽象出來一個新的東西(也就是類),用來存儲更多的數據變數和方法,一切類都直接或間接繼承與NSObject。 在類的頭文件里我們可以定義成員變數、屬性變數、和方法,在方法里又分為實例方法和類方法。 1.成員變數 成員變數可以以三個關鍵詞來修飾,即 ...
  • 程式中資料庫文件路徑在/data/data/<package name>/databases/ adb shell 進入adb命令行 ls 列出當前文件夾下所有文件 假設有一個名為angle.db的資料庫 下麵通過這個資料庫說明資料庫的操作方式 進入資料庫 sqlite3 angle.db 查看所有 ...
  • 解決方案類似: Android項目實戰(四十):Andoird 7.0+ 安裝APK適配 解決方法: 一、在AndroidManifest.xml 文件中添加 四大組件之一的 <provider> 註意這裡的 android :authorities 屬性的值 中的 com.xxx.xxxx 是你的 ...
  • 歡迎大家前往 "騰訊雲+社區" ,獲取更多騰訊海量技術實踐乾貨哦~ 本文由 "WeTest質量開放平臺團隊 " 發表於 "雲+社區專欄" 一款app除了要有令人驚嘆的功能和令人髮指交互之外,在性能上也應該追求絲滑的要求,這樣才能更好地提高用戶體驗。 以下是本人在工作中對經歷過的性能優化的一些總結,依 ...
  • 參考資料: 開發環境:win10 64bit 開發工具:webstorm node.js npm: node.js下的包管理器。 webpack: 它主要的用途是通過CommonJS的語法把所有瀏覽器端需要發佈的靜態資源做相應的準備,比如資源的合併和打包。 vue-cli: 用戶生成Vue工程模板。 ...
  • koa源碼閱讀的第四篇,涉及到向介面請求方提供文件數據。 第一篇:koa源碼閱讀-0第二篇:koa源碼閱讀-1-koa與koa-compose第三篇:koa源碼閱讀-2-koa-router 處理靜態文件是一個繁瑣的事情,因為靜態文件都是來自於伺服器上,肯定不能放開所有許可權讓介面來讀取。各種路徑的校 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...