web-dev-qa-db-ja.com

AngularJS:モデル要素がモデル配列からスプライスされたときにng-repeatリストが更新されない

2つのコントローラーがあり、app.factory関数を使用してコントローラー間でデータを共有しています。

最初のコントローラーは、リンクがクリックされると、モデル配列(pluginsDisplayed)にウィジェットを追加します。ウィジェットは配列にプッシュされ、この変更はビューに反映されます(ng-repeatを使用して配列の内容を表示します)。

<div ng-repeat="pluginD in pluginsDisplayed">
    <div k2plugin pluginname="{{pluginD.name}}" pluginid="{{pluginD.id}}"></div>
</div>

ウィジェットは、k2plugin、remove、resizeの3つのディレクティブに基づいて構築されています。 removeディレクティブは、k2pluginディレクティブのテンプレートにスパンを追加します。このスパンをクリックすると、Array.splice()を使用して共有配列内の適切な要素が削除されます。共有配列は正しく更新されますが、変更はnotに反映されます。ただし、別の要素が追加されると、削除後にビューが正しく更新され、以前に削除された要素は表示されません。

何が間違っていますか?これがうまくいかない理由を説明してもらえますか?私がAngularJSでやろうとしていることを行うより良い方法はありますか?

これは私のindex.htmlです:

<!doctype html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.min.js">
        </script>
        <script src="main.js"></script>
    </head>
    <body>
        <div ng-app="livePlugins">
            <div ng-controller="pluginlistctrl">
                <span>Add one of {{pluginList.length}} plugins</span>
                <li ng-repeat="plugin in pluginList">
                    <span><a href="" ng-click="add()">{{plugin.name}}</a></span>
                </li>
            </div>
            <div ng-controller="k2ctrl">
                <div ng-repeat="pluginD in pluginsDisplayed">
                    <div k2plugin pluginname="{{pluginD.name}}" pluginid="{{pluginD.id}}"></div>
                </div>
            </div>
        </div>
    </body>
</html>

これは私のmain.jsです:

var app = angular.module ("livePlugins",[]);

app.factory('Data', function () {
    return {pluginsDisplayed: []};
});

app.controller ("pluginlistctrl", function ($scope, Data) {
    $scope.pluginList = [{name: "plugin1"}, {name:"plugin2"}, {name:"plugin3"}];
    $scope.add = function () {
        console.log ("Called add on", this.plugin.name, this.pluginList);
        var newPlugin = {};
        newPlugin.id = this.plugin.name + '_'  + (new Date()).getTime();
        newPlugin.name = this.plugin.name;
        Data.pluginsDisplayed.Push (newPlugin);
    }
})

app.controller ("k2ctrl", function ($scope, Data) {
    $scope.pluginsDisplayed = Data.pluginsDisplayed;

    $scope.remove = function (element) {
        console.log ("Called remove on ", this.pluginid, element);

        var len = $scope.pluginsDisplayed.length;
        var index = -1;

        // Find the element in the array
        for (var i = 0; i < len; i += 1) {
            if ($scope.pluginsDisplayed[i].id === this.pluginid) {
                index = i;
                break;
            }
        }

        // Remove the element
        if (index !== -1) {
            console.log ("removing the element from the array, index: ", index);
            $scope.pluginsDisplayed.splice(index,1);
        }

    }
    $scope.resize = function () {
        console.log ("Called resize on ", this.pluginid);
    }
})

app.directive("k2plugin", function () {
    return {
        restrict: "A",
        scope: true,
        link: function (scope, elements, attrs) {
            console.log ("creating plugin");

            // This won't work immediately. Attribute pluginname will be undefined
            // as soon as this is called.
            scope.pluginname = "Loading...";
            scope.pluginid = attrs.pluginid;

            // Observe changes to interpolated attribute
            attrs.$observe('pluginname', function(value) {
                console.log('pluginname has changed value to ' + value);
                scope.pluginname = attrs.pluginname;
            });

            // Observe changes to interpolated attribute
            attrs.$observe('pluginid', function(value) {
                console.log('pluginid has changed value to ' + value);
                scope.pluginid = attrs.pluginid;
            });
        },
        template: "<div>{{pluginname}} <span resize>_</span> <span remove>X</span>" +
                       "<div>Plugin DIV</div>" +
                  "</div>",
        replace: true
    };
});

app.directive("remove", function () {
    return function (scope, element, attrs) {
        element.bind ("mousedown", function () {
            scope.remove(element);
        })
    };

});

app.directive("resize", function () {
    return function (scope, element, attrs) {
        element.bind ("mousedown", function () {
            scope.resize(element);
        })
    };
});
101
janesconference

JQueryを使用してAjax呼び出しを行う、またはここにあるような要素にイベントをバインドするなど、AngularJSの外部で何らかの操作を行うたびに、AngularJSに自身を更新することを知らせる必要があります。必要なコード変更は次のとおりです。

app.directive("remove", function () {
    return function (scope, element, attrs) {
        element.bind ("mousedown", function () {
            scope.remove(element);
            scope.$apply();
        })
    };

});

app.directive("resize", function () {
    return function (scope, element, attrs) {
        element.bind ("mousedown", function () {
            scope.resize(element);
            scope.$apply();
        })
    };
});

以下にドキュメントを示します。 https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$apply

132
Mathew Berg

$scope.$apply();の直後に$scope.pluginsDisplayed.splice(index,1);を追加すると、機能します。

なぜこれが起こっているのかはわかりませんが、基本的に、AngularJSが$ scopeが変更されたことを知らない場合、$ applyを手動で呼び出す必要があります。私はAngularJSも初めてなので、これをもっとうまく説明することはできません。私もそれをも​​っと調べる必要があります。

この素晴らしい記事 が見つかりました。注:「mousedown」にバインドするよりも、ng-click (docs) を使用した方が良いと思います。ここでは、AngularJSに基づいて簡単なアプリを作成しました( http://avinash.me/losh 、source http://github.com/hardfire/losh )。あまりきれいではありませんが、助けになるかもしれません。

54
avk

同じ問題がありました。問題は、「ng-controller」が2回(ルーティングとHTMLで)定義されたためです。

7
shreedhar bhat

それを行う簡単な方法があります。非常に簡単。気づいたので

$scope.yourModel = [];

このようにできるすべての$ scope.yourModel配列リストを削除します

function deleteAnObjectByKey(objects, key) {
    var clonedObjects = Object.assign({}, objects);

     for (var x in clonedObjects)
        if (clonedObjects.hasOwnProperty(x))
             if (clonedObjects[x].id == key)
                 delete clonedObjects[x];

    $scope.yourModel = clonedObjects;
}

$ scope.yourModelはcloneObjectsで更新されます。

お役に立てば幸いです。

0
user3856437

Ng-repeatから「インデックスによる追跡」を削除すると、DOMが更新されます

0
Bassem Zaitoun