为了账号安全,请及时绑定邮箱和手机立即绑定

如何用nodejs打开项目中的html文件?

如何用nodejs打开项目中的html文件?

ITMISS 2019-02-20 13:13:39
刚学node,遇到一个问题:假设项目目录(D:test)下只有run.js和index.html文件,我希望用node运行run.js的时候,在浏览器访问localhost:8888能够访问index.html文件的内容,应该怎么操作?
查看完整描述

2 回答

?
慕容森

TA贡献1853条经验 获得超18个赞

如果非要用nodejs打开就这么写
function detail(response, query_param){
fs.readFile('./sina_weibo.html','utf-8',function(err, data) {//读取内容
if(err) throw err;
response.setHeader('content-type', 'text/html;charset=utf-8');
response.writeHead(200, {"Content-Type": "text/plain"});
response.write(data);
response.end();
});
}

建议你用exress框架里面直接封装好方法直接response.render('path');

查看完整回答
反对 回复 2019-03-04
  • 2 回答
  • 0 关注
  • 6697 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信