0
我不知道爲什麼我收到這個錯誤。 我得到的錯誤是錯誤:[NG:AREQ]參數「PreviewController」不是一個函數,得到了不確定。 有人可以幫我解決這個問題嗎? 也就是有任何其他方式在控制器注入服務?錯誤:[NG:AREQ]參數「PreviewController」不是一個函數,得到了不確定
我的代碼如下:
(function() {
'use strict';
angular
.module('MyModule')
.controller('PreviewController' ['$scope','Service1','Service2',
function($scope, $http) {
$http.get("https://api.myjson.com/bins/30e2a")
.success(function(response) {
//Dummy data taken from JSON file
$scope.firstName = response.firstName;
$scope.lastName = response.lastName;
$scope.dateAdded = response.dateAdded;
});
//Functions have been defined. Functionality to be added.
$scope.cancelAndBack = function() {
window.history.back();
};
}]);
}());
其實我有 –
是我不好,我發現這是別處定義的模塊我自己的錯誤...我錯過了一個逗號..對不起人們:| –
也許應該提及?加載順序是什麼?編輯,好NP – ste2425