刚学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');
- 2 回答
- 0 关注
- 6697 浏览
添加回答
举报
0/150
提交
取消