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 を更新する良い方法を思いつきません。ボタンには 4 つの状態があります。

1 初期 -> 2 送信中 -> 3 エラーまたは 4 成功 -> 1 初期

最初に考えたのは、コントローラーの任意のボタン属性を更新することです。次に、ディレクティブで、何らかの方法で属性値を取得し、条件付きで HTML を適切に更新します。このアプローチでは、ディレクティブで AJAX リクエストのステータスをボタンの HTML にリンクする方法がまだわかりません。コントローラーでの AJAX 呼び出しをやめて、代わりにボタンのクリック イベントにバインドして、ディレクティブで AJAX 呼び出しを行う必要がありますか? または、これを行うためのより良い方法はありますか?

4

2 に答える 2

4

あなたがしなければならない主な変更は、DOM の操作から離れて、モデル自体ですべての変更を行うことです。以下は、2 つの個別のプロパティを使用して、アイコンのスタイルとボタンの状態を制御する例$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 に答える