为什么Angular会说" Uncaught ReferenceError:$ scope未定义"?

时间:2015-11-06 15:32:30

标签: javascript angularjs

我没有在控制器之外使用示波器,所以我很困惑为什么我一直收到错误:

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加载正常。任何帮助都是极好的。感谢。

2 个答案:

答案 0 :(得分:5)

dependency中要求DI array annotation使用时,您需要在数组中包含'$scope'之类的引号,然后您可以在factory函数中包含这些依赖项的实例在像$scope

这样的控制器上
pollApp.controller('choiceCtrl', ['$scope', function ($scope) {

答案 1 :(得分:1)

  pollApp.controller('choiceCtrl', ['$scope', 

缺少引号