Angular 怎么在加载中加入 Loading 提示框

2025-05-08 05:34:04
推荐回答(2个)
回答1:

0、提供一种用过(也许已不是最佳)的思路:

0.1、最外层的 index.html 放个内容为 "Loading..." 的 div;通过最外层 controller 的 $scope.busy 变量,使用 ng-show 控制是否显示;

0.2、需要显示 Loading 时,冒泡 BUSY 事件;最外层 controller 收到 BUSY 事件就将 $scope.busy 置为 true,那个 DIV 就显示了;

0.3、同理,要隐藏就冒泡 NOTBUSY 事件;


1、假设目录结构是:

index.html (这是最外层,body 的 controller 是 mainController;这里写 ng-view)

/partial (各子 view 放这里)


2、index.html 的 body 使用的 mainController 是最外层 controller,在这 mainController 监听 BUSY/NOTBUSY 事件:

$scope.$on("BUSY", function(){        $scope.busy = true;
});
$scope.$on("NOTBUSY", function(){        $scope.busy = false;
});


index.html 里放着那个显示 "Loading..." 字样的 DIV:

 
        loading ...

3、使用:

比如在子 view /partial/po.html (使用 poController)中某动作后要显示 Loading 框:

在 poController.js 中:

$scope.getAllPOs = function(){
    $scope.$emit("BUSY");
    // get data from server
    // ...
    // when done call $scope.$emit("NOTBUSY");
};

回答2:

在提交表单的时候 loading = true 然后在界面上




参见$httpProvider对象,它可以设置http拦截器,允许你在发送前和接收后进行拦截、修改等。
可以封装$http或$resource服务,把loading包进去,这样只需调用封装后的$http或$resource服务即可

相关问答