在AngularJS中思考 - 在AJAX请求中修改DOM的正确方法是什么?

时间:2013-08-26 21:02:08

标签: javascript jquery html ajax angularjs

我是AngularJS的新手。我读过"Thinking in AngularJS" if I have a jQuery background?,答案很有道理。但是,我仍然很难在不依赖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首字母 - &gt; 2正在提交 - &gt; 3错误或4成功 - &gt; 1初始

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

2 个答案:

答案 0 :(得分:4)

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

答案 1 :(得分: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 here