用nodejs 显示一个html页面 但是在浏览器控制台里报错 Unexpected token <
server.js代码如下
var http = require('http'),
fs = require('fs');
http.createServer(function(request, response) {
response.writeHeader(200, {"Content-Type": "text/html"});
fs.readFile("index.html",function (err,data){
response.end(data);
});
}).listen(8000);
index.html代码
ECharts


Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
echart.min.js的引用路径不对。
解决了,跟路径没关系。。。
Content-Type的问题我也解决了啊