WebStorm导航到Angular指令,其中依赖项不起作用

时间:2014-11-19 13:56:33

标签: angularjs angularjs-directive webstorm

我正在使用WebStorm 8.0.4,当我有一个类型的模块:

var module = angular.module('myModule');
module.directive('myDirective', function() {

    return {

        templateUrl: 'XXX.html',
        restrict: 'E'
    };
});

在Ctrl +单击WebStorm中的元素时,它可以正常工作,例如:

<my-directive></my-directive>

但是,当指令包含依赖项时,如:

var module = angular.module('myModule');
module.directive('myDirective', ["$scope", function($scope) {

    return {

        templateUrl: 'XXX.html',
        restrict: 'E'
    };
}]);

有人遇到同样的问题吗?

1 个答案:

答案 0 :(得分:0)

请尝试升级 - WEB-13091已在WebStorm 9中修复