带有Angular的jSLint会导致意外的“$ scope”错误

时间:2014-05-29 21:31:53

标签: javascript angularjs jslint

我收到"意外' $范围'"我针对我正在构建的基于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 () {

        }
}]);

1 个答案:

答案 0 :(得分:6)

函数导致该错误后缺少分号

$scope.downloadFile = function () {
    window.location = '/path/to/file';
}; //<-- add semicolon

$scope.buildFile = function () {

}; //<-- add semicolon