0

我正在尝试在控制器中实现一个功能,该功能将负责向用户显示各种通知。

问题是我希望持续时间成为一个函数参数,但这似乎不起作用。

怎么来的?。

我怎样才能解决这个问题?。

    $scope.layout.showNotification = function(msg, duration){
            $scope.layout.notification.message = msg;
            $scope.layout.notification.visible = true;

            if(!duration || duration === null)
                return

            $timeout(function(){
                $scope.layout.notification.visible = false;
                $scope.layout.notification.message = "";
            }, duration);
   }
4

1 回答 1

1

尝试这个

$scope.notification = {
    message : '',
    visible: true
};
$scope.showNotification = function(msg, duration) {
        $scope.notification.message = msg;
        $scope.notification.visible = true;

        if(!duration || duration === null)
            return

        $timeout(function(){
            $scope.notification.visible = false;
            $scope.notification.message = "";
        }, duration);
};

$scope.showNotification('MSH',5000);

演示

于 2013-09-17T12:20:33.197 回答