55

我有一个角度应用程序,其中包含从示例中获取的保存按钮:

<button ng-click="save" ng-disabled="form.$invalid">SAVE</button>

这对于客户端验证非常有用,因为form.$invalid当用户修复问题时会变为错误,但是如果另一个用户使用相同的电子邮件注册,我有一个电子邮件字段设置为无效。

一旦我将电子邮件字段设置为无效,我就无法提交表单,并且用户无法修复该验证错误。所以现在我不能再使用form.$invalid来禁用我的提交按钮了。

肯定有更好的办法

4

5 回答 5

75

这是自定义指令是您朋友的另一种情况。您需要创建一个指令并将 $http 或 $resource 注入其中,以便在验证时回调服务器。

自定义指令的一些伪代码:

app.directive('uniqueEmail', function($http) {
  var toId;
  return {
    restrict: 'A',
    require: 'ngModel',
    link: function(scope, elem, attr, ctrl) { 
      //when the scope changes, check the email.
      scope.$watch(attr.ngModel, function(value) {
        // if there was a previous attempt, stop it.
        if(toId) clearTimeout(toId);

        // start a new attempt with a delay to keep it from
        // getting too "chatty".
        toId = setTimeout(function(){
          // call to some API that returns { isValid: true } or { isValid: false }
          $http.get('/Is/My/EmailValid?email=' + value).success(function(data) {

              //set the validity of the field
              ctrl.$setValidity('uniqueEmail', data.isValid);
          });
        }, 200);
      })
    }
  }
});

以下是您在标记中使用它的方式:

<input type="email" ng-model="userEmail" name="userEmail" required unique-email/>
<span ng-show="myFormName.userEmail.$error.uniqueEmail">Email is not unique.</span>

编辑:对上面发生的事情的一个小解释。

  1. 当您更新输入中的值时,它会更新 $scope.userEmail
  2. 该指令在 $scope.userEmail 上有一个 $watch ,它在其链接功能中设置。
    • 当 $watch 被触发时,它会通过 $http ajax 调用来调用服务器,并传递电子邮件
    • 服务器将检查电子邮件地址并返回一个简单的响应,例如 '{ isValid: true }
    • 该响应用于 $setValidity 控件。
  3. 标记中有一个 ng-show 设置为仅在 uniqueEmail 有效性状态为 false 时显示。

...对用户来说,这意味着:

  1. 键入电子邮件。
  2. 轻微的停顿。
  3. 如果电子邮件不是唯一的,“电子邮件不是唯一的”消息会显示“实时”。

EDIT2:这也允许您使用 form.$invalid 禁用您的提交按钮。

于 2012-10-12T18:57:11.087 回答
30

我在一些项目中需要这个,所以我创建了一个指令。最后花了一点时间把它放在 GitHub 上,供任何想要一个插入式解决方案的人使用。

https://github.com/webadvanced/ng-remote-validate

特征:

  • 用于 Ajax 验证任何文本或密码输入的解决方案

  • 与 Angulars 内置验证一起使用,并且可以通过 formName.inputName.$error.ngRemoteValidate 访问 cab

  • 限制服务器请求(默认 400 毫秒)并且可以设置为ng-remote-throttle="550"

  • 允许使用 HTTP 方法定义(默认 POST)ng-remote-method="GET"

要求用户输入当前密码和新密码的更改密码表单的示例用法:

<h3>Change password</h3>
<form name="changePasswordForm">
    <label for="currentPassword">Current</label>
    <input type="password" 
           name="currentPassword" 
           placeholder="Current password" 
           ng-model="password.current" 
           ng-remote-validate="/customer/validpassword" 
           required>
    <span ng-show="changePasswordForm.currentPassword.$error.required && changePasswordForm.confirmPassword.$dirty">
        Required
    </span>
    <span ng-show="changePasswordForm.currentPassword.$error.ngRemoteValidate">
        Incorrect current password. Please enter your current account password.
    </span>

    <label for="newPassword">New</label>
    <input type="password"
           name="newPassword"
           placeholder="New password"
           ng-model="password.new"
           required>

    <label for="confirmPassword">Confirm</label>
    <input ng-disabled=""
           type="password"
           name="confirmPassword"
           placeholder="Confirm password"
           ng-model="password.confirm"
           ng-match="password.new"
           required>
    <span ng-show="changePasswordForm.confirmPassword.$error.match">
        New and confirm do not match
    </span>

    <div>
        <button type="submit" 
                ng-disabled="changePasswordForm.$invalid" 
                ng-click="changePassword(password.new, changePasswordForm);reset();">
            Change password
        </button>
    </div>
</form>
于 2014-04-09T18:35:59.307 回答
17

我创建了 plunker,其解决方案非常适合我。它使用自定义指令,但在整个表单上而不是在单个字段上。

http://plnkr.co/edit/HnF90JOYaz47r8zaH5JY

我不建议禁用服务器验证的提交按钮。

于 2013-01-07T06:17:47.530 回答
5

行。如果有人需要工作版本,它在这里:

来自文档:

 $apply() is used to enter Angular execution context from JavaScript

 (Keep in mind that in most places (controllers, services) 
 $apply has already been called for you by the directive which is handling the event.)

这让我觉得我们不需要: $scope.$apply(function(s) {否则它会抱怨$digest

app.directive('uniqueName', function($http) {
    var toId;
    return {
        require: 'ngModel',
        link: function(scope, elem, attr, ctrl) {
            //when the scope changes, check the name.
            scope.$watch(attr.ngModel, function(value) {
                // if there was a previous attempt, stop it.
                if(toId) clearTimeout(toId);

                // start a new attempt with a delay to keep it from
                // getting too "chatty".
                toId = setTimeout(function(){
                    // call to some API that returns { isValid: true } or { isValid: false }
                    $http.get('/rest/isUerExist/' + value).success(function(data) {

                        //set the validity of the field
                        if (data == "true") {
                            ctrl.$setValidity('uniqueName', false);
                        } else if (data == "false") {
                            ctrl.$setValidity('uniqueName', true);
                        }
                    }).error(function(data, status, headers, config) {
                        console.log("something wrong")
                    });
                }, 200);
            })
        }
    }
});

HTML:

<div ng-controller="UniqueFormController">

        <form name="uniqueNameForm" novalidate ng-submit="submitForm()">

            <label name="name"></label>
            <input type="text" ng-model="name" name="name" unique-name>   <!-- 'unique-name' because of the name-convention -->

            <span ng-show="uniqueNameForm.name.$error.uniqueName">Name is not unique.</span>

            <input type="submit">
        </form>
    </div>

控制器可能如下所示:

app.controller("UniqueFormController", function($scope) {
    $scope.name = "Bob"
})
于 2013-10-22T14:35:49.150 回答
3

感谢此页面的答案了解https://github.com/webadvanced/ng-remote-validate

选项指令,这比我不太喜欢的略少,因为每个字段都要写指令。模块是相同的 - 一个通用的解决方案。

但是在模块中我遗漏了一些东西 - 检查该字段的几个规则。
然后我刚刚修改了模块https://github.com/borodatych/ngRemoteValidate
为俄罗斯自述文件道歉,最终会改变。
我赶紧分享一下突然有人有同样的问题。
是的,我们为此聚集在这里……

加载:

<script type="text/javascript" src="../your/path/remoteValidate.js"></script>

包括:

var app = angular.module( 'myApp', [ 'remoteValidate' ] );

HTML

<input type="text" name="login" 
ng-model="user.login" 
remote-validate="( '/ajax/validation/login', ['not_empty',['min_length',2],['max_length',32],'domain','unique'] )" 
required
/>
<br/>
<div class="form-input-valid" ng-show="form.login.$pristine || (form.login.$dirty && rv.login.$valid)">
    From 2 to 16 characters (numbers, letters and hyphens)
</div>
<span class="form-input-valid error" ng-show="form.login.$error.remoteValidate">
    <span ng:bind="form.login.$message"></span>
</span>

后端 [Kohana]

public function action_validation(){

    $field = $this->request->param('field');
    $value = Arr::get($_POST,'value');
    $rules = Arr::get($_POST,'rules',[]);

    $aValid[$field] = $value;
    $validation = Validation::factory($aValid);
    foreach( $rules AS $rule ){
        if( in_array($rule,['unique']) ){
            /// Clients - Users Models
            $validation = $validation->rule($field,$rule,[':field',':value','Clients']);
        }
        elseif( is_array($rule) ){ /// min_length, max_length
            $validation = $validation->rule($field,$rule[0],[':value',$rule[1]]);
        }
        else{
            $validation = $validation->rule($field,$rule);
        }
    }

    $c = false;
    try{
        $c = $validation->check();
    }
    catch( Exception $e ){
        $err = $e->getMessage();
        Response::jEcho($err);
    }

    if( $c ){
        $response = [
            'isValid' => TRUE,
            'message' => 'GOOD'
        ];
    }
    else{
        $e = $validation->errors('validation');
        $response = [
            'isValid' => FALSE,
            'message' => $e[$field]
        ];
    }
    Response::jEcho($response);
}
于 2015-07-20T12:14:35.283 回答