(ESLint)JSDoc语法错误 - 未捕获的SyntaxError:与SSHTML文件一起使用时出现意外的标识符

时间:2018-06-18 07:26:24

标签: javascript visual-studio nancy

我在运行Visual Studio 2017的基于Nancy 的项目中有一个带有以下代码的javascript文件[formPost.js]。解决方案无法检测到formPost.js文件。



    'use strict';
    var FORM_NAME = "configure-form";
    var API_URL = "/data/save";
    var RESPONSE_CONTAINER = "response_display";
    var RESULTS_CONTAINER = "results_display";
    /**
    * Checks that an element has a non-empty `name` and `value` property.
    * @@param  {Element} element  the element to check
    * @@return {Bool}             true if the element is an input, false if not
    */
    function isValidElement(element) {
       return element.name && element.value;
    }
    ;




我在master.sshtml文件中引用了JS文件,如下所示

<script  type="text/javascript" language="Javascript" src="/Content/script/formPost.js">
 </script>

我在Visual Studio中看到以下错误

enter image description here

我在浏览器控制台中看到下面的错误

enter image description here

浏览器中没有找到消息。

enter image description here

0 个答案:

没有答案