初学者,如何用node在项目下打开index.html?
1 回答
湖上湖
TA贡献2003条经验 获得超2个赞
使用node.js的文件系统读取html的内容再使用response.sendFile对请求进行相应.
var fs = require('fs'); response.sendFile(fs.readFileSync('index.html','UTF-8'));
添加回答
举报
0/150
提交
取消