Angular ngMessage:在表单提交时验证

ps0*_*604 9 angularjs

在这个插件中有一个带有ngMessage验证的表单.这就是我想要实现的目标:

  • 向用户显示表单时,不应显示任何错误消息
  • 在模糊时,如果字段有错误,则应显示该消息
  • 提交表单时,如果有任何字段存在错误,则应显示错误消息.

在插件中我有两个问题:(1)在最初显示表单时显示消息,(2)当没有错误消息并且用户点击按钮时,表单未提交.代码有什么问题?

HTML

<form name="myForm" novalidate>
  <label>
    Enter your name:
    <input type="text"
           name="myName"
           ng-model="name"
           ng-minlength="5"
           ng-maxlength="20"
           required />
  </label>

  <div ng-messages="myForm.myName.$error" style="color:red" role="alert">
    <div ng-message="required">You did not enter a field</div>
    <div ng-message="minlength">Your field is too short</div>
    <div ng-message="maxlength">Your field is too long</div>
  </div>

  <button type="submit" 
  ng-submit="myForm.$valid && submitForm()">Submit</button>
</form>
Run Code Online (Sandbox Code Playgroud)

使用Javascript

var app = angular.module('ngMessagesExample', ['ngMessages']);
app.controller('nameController', function ($scope) {

  $scope.submitForm = function() {
    alert('Form submitted - fields passed validation');

  };      
});
Run Code Online (Sandbox Code Playgroud)

Kwa*_*arc 11

您需要使用例如ng-if等条件显示验证消息

HTML:

<div ng-if="submitted || myForm.myName.$dirty" 
    ng-messages="myForm.myName.$error" style="color:red" role="alert">
    <div ng-message="required">You did not enter a field</div>
    <div ng-message="minlength">Your field is too short</div>
    <div ng-message="maxlength">Your field is too long</div>
</div>
Run Code Online (Sandbox Code Playgroud)

使用Javascript:

$scope.submitForm = function() {
    $scope.submitted = true;
    if (myForm.$valid) {
        alert('Form submitted - fields passed validation');
    }
};  
Run Code Online (Sandbox Code Playgroud)

并从按钮移动ng-submit以形成标签,如:

<form name="myForm" novalidate ng-submit="submitForm()">
Run Code Online (Sandbox Code Playgroud)