编程语言
首页 > 编程语言> > javascript – 在内部更改Notification Factory模型后,Angular ng-repeat不会更新

javascript – 在内部更改Notification Factory模型后,Angular ng-repeat不会更新

作者:互联网

在我的Angular应用程序中,我有一个简单的通知工厂,它允许我存储和获取我想传达给用户的信息:

(function() {
    'use strict';

    angular
        .module('peaches')
        .factory('NotificationFactory', factory);

    // factory.$inject = ['dependencies'];

    /* @ngInject */
    function factory() {

        var messages = [];

        var service = {
            postAlert: postAlert,
            getAlerts: getAlerts,
            deleteAlert: deleteAlert
        };

        return service;

        function postAlert(alert) {
            messages.push(alert);
            if (alert.duration) {
                setTimeout(function() {
                    deleteAlert(alert);
                }, alert.duration)
            }
        }

        function getAlerts() {
            return messages;
        }

        function deleteAlert(alert) {
            messages.splice(messages.indexOf(alert), 1);
        }
    }
})();

正如您在postAlert函数中看到的,我希望能够在持续时间毫秒之后删除通知,如果所述通知具有持续时间属性.

目的是让某些类型的通知在几秒钟后自动消失,而不是要求交互关闭.

这是一个示例通知:

var reportSaved = {
    msg: "Report saved.",
    type: "success",
    duration: 1500
}

enter image description here

然而,正在发生的事情是,即使setTimeout按预期工作并在设置的持续时间之后有效地删除通知,该元素仍然被绘制,直到我更改页面(之后它按预期消失),因此ng-repeat永远不会更新从我的工厂内部调用deleteAlert之后.

这是HTML:

<div class="notification" ng-repeat="alert in vm.alerts(); track by $index" ng-cloak>
    <i ng-if="alert.type === 'notification'" class="fa fa-spinner"></i><i ng-if="alert.type === 'success'" class="fa fa-check-circle"></i> {{alert.msg}}
</div>

解决这个问题的最佳方法是什么?

解决方法:

尝试使用angular $timeout而不是setTimeout.区别在于$timeout运行摘要周期,这是ng-repeat更新值所需的.

标签:javascript,angularjs,angularjs-ng-repeat,angular-services
来源: https://codeday.me/bug/20190609/1202417.html