我正在使用 angular.js。我创建了 app.js 文件,我在其中输入代码:
angular.module('polls', ['pollServices'])
.config(['$routeProvider', function ($routeProvider)
{
$routeProvider
.when('/polls', { templateUrl: 'partials/list.html', controller: PollListCtrl })
.when('/poll/:pollId', { templateUrl: 'partials/item.html', controller: PollItemCtrl })
.when('/new', { templateUrl: 'partials/new.html', controller: PollNewCtrl })
.otherwise({ redirectTo: '/polls' });
}]);
但是当我运行代码时,它给出的错误是:
angular.module('polls', ['pollServices']
^
ReferenceError: angular is not defined