JSLint向我显示以下消息:"预期标识符,而是看到']'。'。 这是我第一次使用Javascript.Her是我的代码:
(function () {
"use strict";
}
());
angular.module('Umfrage', 'Auswertung'[])
.controller('mainCtrl', ['$scope', '$log', '$http', function ($scope, $log, $http) {
$scope.vorname = [];
$scope.umfrageData = [];
$scope.test = function () {
$log.log($scope.vorname);
};
$scope.submitForm = function (data) {
$scope.umfrageData.push(data);
$http.post("http://localhost:8080/Auswertung")
$http.get("http://localhost:8080")
.success(function (response) {$scope.umfrageData = response; });
$log.log($scope.umfrageData);
};
}]);
答案 0 :(得分:2)
这一行:
angular.module('Umfrage', 'Auswertung'[])
正在创建一个名为'Umfrage'的模块。第二个参数应该是一个数组,保存与您要声明的模块名称相匹配的字符串项,作为您正在创建的模块的依赖项。
因此,这是正确的,假设有一个名为'Auswertung'的模块
angular.module('Umfrage', ['Auswertung'])
请参阅module API