我试图使用" 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');
});
这是我的代码:
答案 0 :(得分:2)
两件事
angular-busy.js
index.html
promise
而不是myPromise
工作示例: