我在尝试使我的代码正常工作时遇到了一些问题。每次我使用nodemon加载它时,它都会尝试连接并在localhost选项卡中给我一个加载图标。当我自行加载主页时,实时服务器可以工作,但是index.js不会这样做。
<script>
$(document).ready(function(){
//Your Interval Code Here
});
</script>
答案 0 :(得分:0)
可以代替fs.createReadStream更改为
res.sendFile(__dirname + '/public/HomePage/index.html') ;
请参阅下文。
https://expressjs.com/en/api.html#res.sendFile enter link description here