【发布时间】:2026-01-17 22:10:01
【问题描述】:
现在我在问题中添加了代码。 控制器.js services.js
并收到此错误。 angular.js:13642 错误:[$injector:unpr]http://errors.angularjs.org/1.5.6/$injector/unpr?p0=%24scopeProvider%20%3C-%20%24scope%20%3C-%20CF 在 angular.js:38 在 angular.js:4501 在 Object.d [as get] (angular.js:4654) 在 angular.js:4506 在 d (angular.js:4654) 在 e (angular.js:4678) 在 Object.invoke (angular.js:4700) 在 Object.$get (angular.js:4547) 在 Object.invoke (angular.js:4708) 在 angular.js:4507
'use strict';
angular.module("carsApp")
.controller("carsController", ["$scope", "CF",
function($scope, CF) {
$scope.tab = 1;
$scope.filterTxt = '';
$scope.showDetails = false;
$scope.cars = CF.getCars();
$scope.selectMenu = function(setTab) {
$scope.tab = setTab;
if (setTab === 2) {
$scope.filterTxt = "BMW";
} else if (setTab === 3) {
$scope.filterTxt = "HONDA";
} else if (setTab === 4) {
$scope.filterTxt = "TOYOTA";
} else {
$scope.filterTxt = "";
}
}
$scope.isSelected = function(val) {
return ($scope.tab === val);
}
$scope.toggleDetails = function() {
$scope.showDetails = !$scope.showDetails;
}
}
]);
//Sser
angular.module("carsApp")
.factory("CF", function($scope) {
var carFact = {};
$scope.cars = [{
id: '1',
make: 'BMW',
name: 'BMW',
image: 'images/bmw/bmw1.png',
model: '2005',
price: '4500',
description: 'A very nice maintained car. Good road grip, no work required. Next inspection March 2017',
comment: ''
}, {
id: '2',
make: 'HONDA',
name: 'Civic',
image: 'images/honda/honda1.png',
model: '2016',
price: '25000',
description: 'Honda is a nice car. Good road grip, no work required. Next inspection March 2017',
comment: ''
}, ];
carFact.getCars = function() {
return cars;
};
carFact.getCar = function(index) {
return cars[index];
};
return carFact;
});
【问题讨论】:
-
请在问题中包含代码。如果您可以显示完整的错误消息(使用未缩小的 angular.js)也会很好。
-
angular.js:13642 错误:[$injector:unpr] errors.angularjs.org/1.5.6/$injector/… at angular.js:38 at angular.js:4501 at Object.d [as get] (angular.js:4654 ) at angular.js:4506 at d (angular.js:4654) at e (angular.js:4678) at Object.invoke (angular.js:4700) at Object.$get (angular.js:4547) at Object .invoke (angular.js:4708) at angular.js:4507
-
请不要用截图提问。在问题中包含实际代码。另外,你应该edit这个问题来添加你的错误信息; cmets 中的消息/代码未格式化,这使得它们难以解释。
标签: angularjs angularjs-scope angular-providers angular-factory