这个角度繁忙的简单实现有什么问题?

时间:2014-10-28 15:02:49

标签: angularjs

我试图使用" angular-busy"当我将[' cgBusy']添加到角度模块时会中断。

有人能看出这个出了什么问题吗?我在尝试使用$ http服务提取数据时显示加载微调器:

 $scope.promise = $http({
method: 'JSONP',
url: nprUrl + '&apiKey=' + apiKey + '&callback=JSON_CALLBACK'
}).success(function(data, status) {
  alert('success');
 // Store the list of stories on the scope
 // from the NPR API response object (described above)
 $scope.programs = data.list.story;
}).error(function(data, status) {
 // Some error occurred
 alert('fail');
});

这是我的代码:

http://plnkr.co/edit/wXHdMpiyhHSVTtncorYD?p=preview

1 个答案:

答案 0 :(得分:2)

两件事

  1. 您必须在angular-busy.js
  2. 中加入index.html
  3. 您的承诺名为promise而不是myPromise
  4. 工作示例:

    http://plnkr.co/edit/PLCs4S3ih8eD4mQuZOAl?p=preview