今天的代码让我再次发疯,尤其是 Angular 服务中带有显示模块模式的 Angular。当我开始时,我发现它没有任何问题......现在除了不工作......我不知道。任何方式都知道我想知道它是有角度的还是我在做一些愚蠢的事情。这是代码:
angular.module('homeAdmin.services', [])
.factory('dataService', function ($http, $q) {
'use strict';
function _contentTypes(){
var intialized = false;
var _models = [];
function _isReady() {
return intialized;
};
return {
isReady: _isReady
};
};
return {
contentTypes: _contentTypes
};
});
这就是它的名字:
var contentTypeCtrl = ['$scope','$http','$window','dataService', function ($scope, $http, $window, dataService) {
'use strict';
$scope.isBusy = false;
$scope.data = dataService;
$scope.contentType = {};
$scope.name = 'Content Type';
$scope.init = function () {
console.log('contentTypeCtrl initialized');
};
if (dataService.contentTypes.isReady() == false) {
console.log("Hello let's load some data!");
}}]
这是 Firefox 给我手指的方式:
[16:01:56.864] "Error: dataService.contentTypes.isReady is not a function
contentTypeCtrl<@http://localhost:49499/App/plugins/home/admin/ngen/content-type-ctrl.js:12
invoke@http://localhost:49499/Scripts/angular/angular.js:2902
instantiate@http://localhost:49499/Scripts/angular/angular.js:2914
@http://localhost:49499/Scripts/angular/angular.js:4805
updateView@http://localhost:49499/Scripts/angular/angular-ui-router.js:1317
$ViewDirective/directive.compile/</eventHook@http://localhost:49499/Scripts/angular/angular-ui-router.js:1276
Scope.prototype.$broadcast@http://localhost:49499/Scripts/angular/angular.js:8307
$StateProvider/$get/transitionTo/$state.transition<@http://localhost:49499/Scripts/angular/angular-ui-router.js:1067
qFactory/defer/deferred.promise.then/wrappedCallback@http://localhost:49499/Scripts/angular/angular.js:6846
qFactory/ref/<.then/<@http://localhost:49499/Scripts/angular/angular.js:6883
Scope.prototype.$eval@http://localhost:49499/Scripts/angular/angular.js:8057
Scope.prototype.$digest@http://localhost:49499/Scripts/angular/angular.js:7922
Scope.prototype.$apply@http://localhost:49499/Scripts/angular/angular.js:8143
done@http://localhost:49499/Scripts/angular/angular.js:9170
completeRequest@http://localhost:49499/Scripts/angular/angular.js:9333
createHttpBackend/</xhr.onreadystatechange@http://localhost:49499/Scripts/angular/angular.js:9304"
帮助?任何人??
这是一个如何使用 isready 函数的示例:
if (dataService.contentTypes.isReady() == false) {
$scope.isBusy = true;
dataService.contentTypes.get()
.then(function () {
}, function () {
alert('contentTypes retrieval failed');
})
.then(function () {
$scope.isBusy = false;
});
}
并像这样使用数据:
<tr data-ng-repeat="model in data.contentTypes.models">