我是Angularjs的新手。我从html文件中获取一个列表,我将它传递给后端进行处理。我有一个错误,上面写着ReferenceError: $Value is not defined
在我的控制器文件中,我有一个功能测试。错误发生在$scope.result = $Value.getVal(data);
test = function test($scope, $timeout, $routeParams, Value) {
getVal = fucntion getVal(list) {
var data = list....
$scope.result = $Value.getVal(data);
},
start = function start() {
$scope.info = getVal;
};
start();
};
angular.module('myApp').controller('test', ['$scope', '$timeout', '$routeParams', test]);
...
答案 0 :(得分:1)
您需要将Value
添加到内联注释列表:
angular.module('myApp')
.controller('test', ['$scope', '$timeout', '$routeParams', 'Value', test]);
并称之为:
$scope.result = Value.getVal(data);