最多ng-include完成后,加载程序可见

时间:2014-12-01 10:53:24

标签: javascript jquery html angularjs jsp

使用angularjs在div标签中加载jsp页面内容。在jsp页面内有一些文字和按钮。它成功完成了。但是在div中加载jsp页面内容需要一些时间。在这里,我使用一些类来加载加载器span。我希望在该div中加载jsp内容后禁用加载器。

的index.html

  <div ng-include="path"></div>
  <div>
       <span ng-show="loader" class="glyphicon glyphicon-refresh-animate"></span>
  </div>

angular.js

  $scope.path='https:/..../url.jsp?orderNo='+$scope.orderNo+'&amount='+$scope.amount;

1 个答案:

答案 0 :(得分:0)

我找到了答案而忘记发帖了

$rootScope.$on('$includeContentLoaded', function(event) {
    $scope.loader = false;
});