在 $http post 请求时在 Ionic 框架中显示微调器

Show spinner in Ionic framework at the time of $http post request

感谢您查看此问题。 如何在 Ionic 框架中完成 $http post 请求时显示微调器?

您可以从 ionic spinner 获取所有详细信息 here

在您的 html 模板文件中,像这样使用离子微调器。

<ion-spinner icon="spiral" ng-if="isLoading"></ion-spinner>

并且在你的控制器文件中,你可以让微调器像这样工作,

$scope.isLoading = true;
$http.post(url, body,config).succcess(function(res) {
      $scope.isLoading = false;
})
.error(function(err) {
      $scope.isLoading = false;
});