我有一个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>
);
同样,我不明白为什么会这样。