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

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




ITMISS
浏览 6699回答 2
2回答

慕容森

如果非要用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');
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js