0

我是 AngularJS 的新手。如果我有 jQuery 背景,我是否已经阅读过“在 AngularJS 中思考”?答案很有意义。但是,我仍然很难在不依赖 jQuery 的情况下翻译我想做的事情。

我的要求似乎很简单。我有一个在提交时执行 AJAX 调用的表单。我希望提交按钮以可视方式更新以通知用户 AJAX 请求状态。提交按钮不会更新为简单的文本,而是更新为文本加图标。该图标在 HTML 中,这意味着我不能使用 AngularJS 简单数据绑定。

我有这个请求在jsFiddle工作。

HTML

<div ng-app >
    <form id="id_request" ng-controller="RequestCtrl">
        <input id="id_title" name="title" ng-model="request.title" type="text" class="ng-valid ng-dirty" />
        <button type="submit" class="btn btn-primary" ng-click="submitRequest($event)">
            Submit
        </button>
    </form>
</div>

AngularJS

function RequestCtrl($scope, $http) {
    $scope.request = {};
    $scope.submitRequest = function($event) {
        $($event.target).prop("disabled", true).html('<i class="icon-refresh icon-spin"></i> Submitting</a>');
        $http({
            method : 'GET',
            url : '/ravishi/urSDM/3/',
            data : $.param($scope.request),
            headers : {
                'Content-Type' : 'application/x-www-form-urlencoded',
            }
        }).
        success(function(data, status, headers, config) {
            console.log("success");
            console.log($event);
            // This callback will be called asynchronously when the response is available.
            $($event.target).html('<i class="icon-ok"></i> Success').delay(1500).queue(function(next) {
                $(this).removeAttr("disabled").html("Submit");
                next();
            });
        }).
        error(function(data, status, headers, config) {
            console.log("error");
            // Called asynchronously if an error occurs or server returns response with an error status.
            $($event.target).html('<i class="icon-warning-sign"></i> Error').delay(1500).queue(function(next) {
                $(this).removeAttr("disabled").html("Submit");
                next();
            });
        });
    }
}

我完全意识到这是在 AngularJS 中执行此操作的错误方法。我不应该在我的控制器中更新 DOM,我应该尝试完全避免使用 jQuery。

根据我收集的信息,我需要使用指令。我已经看过一些示例,但想不出一种通过按钮经历的多种状态来更新按钮 HTML 的好方法。按钮有四种状态:

1 初始 -> 2 提交 -> 3 错误或 4 成功 -> 1 初始

我的第一个想法是更新控制器中的任意按钮属性。然后在指令中,我会以某种方式检索属性值并有条件地适当地更新 HTML。使用这种方法,我仍然不确定如何将 AJAX 请求的状态链接到指令中按钮的 HTML。我应该放弃控制器中的 AJAX 调用,而是通过绑定到按钮的单击事件来执行指令中的 AJAX 调用吗?或者,有没有更好的方法来做到这一点?

4

2 回答 2

4

您必须做的主要更改是远离操作 DOM,而是对模型本身进行所有更改。这是一个示例,其中我使用了两个单独的属性$scope.icon$scope.locked控制图标样式和按钮状态:http: //jsfiddle.net/CpZ9T/1/

于 2013-08-26T21:33:54.377 回答
1

在您的情况下,我认为您绝对应该创建一个指令来封装按钮及其行为。这是一个例子:

HTML

<div ng-app='app'>
  <form id="id_request" ng-controller="RequestCtrl">
    <input id="id_title" name="title" ng-model="request.title" type="text" class="ng-valid ng-dirty" />
    <my-button state="state" click-fn="submitRequest()"></my-button>
  </form>
</div>

Javascript

angular.module('app', [])
    .directive('myButton', function() {
    return {
        restrict: 'E',
        scope: { state: '=', clickFn: '&' },
        template: '<button type="submit" class="btn btn-primary" ng-click="clickFn()" ng-disabled="disabled">' +    
                  '  <i ng-class="cssClass"></i>' + 
                  '  {{ text }}' + 
                  '</button>',
        controller: function($scope) {
            $scope.$watch('state', function(newValue) {                                                    
                $scope.disabled = newValue !== 1;
                switch (newValue) {
                    case 1:
                        $scope.text = 'Submit';
                        $scope.cssClass = ''; 
                        break;
                    case 2:
                        $scope.text = 'Submitting';
                        $scope.cssClass = 'icon-refresh icon-spin';  
                        break;
                    case 3:
                        $scope.text = 'Error';
                        $scope.cssClass = 'icon-warning-sign';  
                        break;
                    case 4: 
                        $scope.text = 'Success';
                        $scope.cssClass = 'icon-ok';  
                        break;
                }
            });
        }        
    };
})
.controller('RequestCtrl', function ($scope, $http, $timeout) {
    $scope.state = 1;
    $scope.request = {};

    $scope.submitRequest = function() {
        $scope.state = 2;
        $http({
            method : 'GET',
            url : '/ravishi/urSDM/3/',
            data : $.param($scope.request),
            headers : {
                'Content-Type' : 'application/x-www-form-urlencoded',
            }
        }).
        success(function(data, status, headers, config) {            
            $scope.state = 4;
            $timeout(function() { $scope.state = 1; }, 1500);
            console.log("success");                       
        }).
        error(function(data, status, headers, config) {
            $scope.state = 3;
            $timeout(function() { $scope.state = 1 }, 1500);
            console.log("error");                        
        });
    }
});

jsFiddle在这里

于 2013-08-26T22:26:17.187 回答