我没有在控制器之外使用示波器,所以我很困惑为什么我一直收到错误:
Uncaught ReferenceError: $scope is not defined
它来自第5行,它是" pollApp.controller"线。
(app.js)
var pollApp = angular.module('myApp', ['ui.router']);
pollApp.controller('choiceCtrl', [$scope, function ($scope) {
$scope.choices = [{body: "test"}]; //just for testing
$scope.addChoice = function () {
//add new choice
if ($scope.choiceBody) {
$scope.choices.push({
body: $scope.choiceBody
});
$scope.choiceBody = null;
}
}
}]);
我还检查过Angular加载正常。任何帮助都是极好的。感谢。
答案 0 :(得分:5)
在dependency
中要求DI array annotation
使用时,您需要在数组中包含'$scope'
之类的引号,然后您可以在factory
函数中包含这些依赖项的实例在像$scope
pollApp.controller('choiceCtrl', ['$scope', function ($scope) {
答案 1 :(得分:1)
pollApp.controller('choiceCtrl', ['$scope',
缺少引号