Angularjs $ routeProvider jshint错误

时间:2016-07-05 20:50:26

标签: javascript angularjs jshint

我有这个角度代码

    (function() {
        'use strict';

        var sampleApp = angular.module('MyApp', [
            'ngRoute',
            'MyApp.controllers.Main'
        ]);

        sampleApp .config(['$routeProvider',
            function($routeProvider){
                $routeProvider.

                    when('/',{
                        templateUrl: '../templates/home.html',
                        controller: 'homeController'
                    }).

                    when('/one',{
                        templateUrl: '../templates/one.html',
                        controller: 'oneController'
                    }).

                    when('/two',{
                        templateUrl: '../templates/two.html',
                        controller: 'twoController'
                    }).
        }]);

    })();   

当我使用jshint时,我得到了这些错误。

    src/app/app.js: line 27, col 5, Expected an identifier and instead saw '}'.
    src/app/app.js: line 27, col 5, Expected an assignment or function call and instead saw an expression.
    src/app/app.js: line 27, col 6, Missing semicolon.
    src/app/app.js: line 27, col 6, Expected an identifier and instead saw ']'.
    src/app/app.js: line 27, col 6, Expected an assignment or function call and instead saw an expression.
    src/app/app.js: line 27, col 7, Missing semicolon.
    src/app/app.js: line 27, col 7, Expected an identifier and instead saw ')'.
    src/app/app.js: line 27, col 7, Expected an assignment or function call and instead saw an expression.
    src/app/app.js: line 29, col 2, Expected ']' to match '[' from line 9 and instead saw ')'.
    src/app/app.js: line 29, col 5, Expected ')' and instead saw ';'.
    src/app/app.js: line 29, col 6, Missing semicolon.
    src/app/app.js: line 1, col 13, Unmatched '{'.
    src/app/app.js: line 29, col 10, Unrecoverable syntax error. (100% scanned).

我无法看到如何更改角度来传递jshint

1 个答案:

答案 0 :(得分:2)

    when('/two',{
                    templateUrl: '../templates/two.html',
                    controller: 'twoController'
                }).

最后一个“。”应该是“;”相反,它应该看起来像

     when('/two',{
                    templateUrl: '../templates/two.html',
                    controller: 'twoController'
                });