Angular js ng显示无法正常工作

时间:2015-04-30 06:01:41

标签: javascript html angularjs

我正在开发一个小型网络应用并遇到问题。

我想在div中显示预加载器svg,如下所示: -

<div class="loader" ng-show="main.showLoader">
<svg class="spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
    <circle class="path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>

在我的HTML中,我点击按钮时切换了 main.showLoader = true

控制器功能: -

$scope.setCA=function(cont,click){

    if($scope.aC!=null){

        $scope.aC={};                           
    }
        if($scope.c[c.p]==null){ 
            $scope.mC='';

            .....Server interactions here 


                var chat={
                    'name':cont.name,
                    'phone':cont.phone,
                    'msgs':msgs,
                    'unreadMsgs':unreads,
                };

                $scope.chats[cont.phone]=chat;                  //Assign the messages from repective users in the chats array to the respective contact phone number as here                        
                $scope.$apply(function(){
                    $scope.activeChats[cont.phone]=chat;
                    if(click)
                        $scope.setChatInFocus($scope.chats[cont.phone]);        //Send chats to setChatinFocus       
                });
            });
        }
        else{
            $scope.showFirstTime = false;
            if($scope.activeChats[cont.phone]==null){
                $scope.activeChats[cont.phone]=$scope.chats[cont.phone];
            }
            if(click)
                $scope.setChatInFocus($scope.chats[cont.phone]);    
        }
        setTimeout(function(){scrollToBottom()},10);
         this.showLoader=false;
    };

HTML: -

<div class="singleContact person" ng-cloak ng-class="{active: contactName === contact.name}" 
 ng-repeat="contact in contacts"
 ng-click='main.showLoader=true;setChatActive({ "name": contact.name, "phone": contact.phone },true)>

按预期开启,但不会熄灭。 一些帮助?

2 个答案:

答案 0 :(得分:1)

尝试在控制器顶部执行self.showLoader = false并将其更改为this

在当前上下文中,:- use_module(library(clpfd)). 是您所在的功能。

答案 1 :(得分:0)

我认为属性放在不同的对象上。启用加载程序时,代码会将$scope.main.showLoader设置为true。另一方面,超时回调将变量this.showLoader设置为false。正如@tpie已经解释的那样,this在这种情况下只引用了超时回调函数本身。

您发布的HTML代码段不完整,所以我只能猜测。使用以下行重置showLoader可以解决问题。

$scope.main.showLoader=false;