Javascript Web应用程序显示服务器错误,虽然我不使用任何服务器

时间:2015-09-22 10:34:42

标签: javascript reactjs google-chrome-devtools

我有一个React应用程序,我通过选择index.html和“在浏览器中打开”来显示。

我的index.html文件以下列方式显示我的Main.js对象:

<body>
    <div class="container" id="content"></div>
    <!-- build:js -->
    <script src="app/Main.js"></script>
    <!-- endbuild -->
  </body>

很遗憾,我在Goggle Chrome开发者工具中收到以下错误。

 Failed to load resource: the server responded with a status of 404 (Not Found)

但是,我不使用服务器,因为我直接在浏览器中显示index.html页面,所以我认为我不需要服务器。

我得到的另一个错误(可能是相关的)是:

Uncaught SyntaxError: Unexpected token <

我在以下代码的第三行得到了这个:

 render: function() {
    return (
      <div>
        <h1>Res</h1>
        <ResE data={this.state.data} />
      </div>
    );

同样,我不明白为什么会这样。

0 个答案:

没有答案