我收到"意外' $范围'"我针对我正在构建的基于Angular的应用程序运行jSLint时出错。
以下是导致错误的代码的简化版本。您可以将代码输入jslint.com网站以重现问题。
我不明白为什么第一个函数声明(downloadFile)不会导致错误但第二个函数声明(buildFile)。
/*jslint browser: true*/
/*global angular */
angular.module('testApp')
.controller('FileCtrl', ["$scope", function ($scope) {
"use strict";
$scope.downloadFile = function () {
window.location = '/path/to/file';
}
$scope.buildFile = function () {
}
}]);
答案 0 :(得分:6)
函数导致该错误后缺少分号
$scope.downloadFile = function () {
window.location = '/path/to/file';
}; //<-- add semicolon
$scope.buildFile = function () {
}; //<-- add semicolon