使用Require时,WebStorm将文件标记为无效

时间:2015-02-26 15:23:28

标签: webstorm

我'使用最新版本的webstorm(9.03),我的大多数JavaScript文件都显示为无效。我正在显示以下代码。

enter image description here

    'use strict';

    function SpeakerDetailsController (speaker, CONFIG, $sce, $scope) {
      this.speaker = speaker;
      this.showSessions = CONFIG.showSessions === 'True';

        $scope.someSafeContent = $sce.trustAsHtml("<i>Hello</i> <b>World!</b>");

    }
    SpeakerDetailsController.$inject = ['speaker', 'CONFIG', '$sce', '$scope'];

    export default SpeakerDetailsController;

1 个答案:

答案 0 :(得分:2)

请确保在设置/语言和框架/ JavaScript中将JavaScript语言版本设置为“ECMAScript 6”(或“JSX Harmony”),以正确识别ES6语法。