如何解决使用文件系统读取HTML文件
此处{'Content-Type':'text / html'}的用途是什么?
var http = require('http');
var fs = require('fs');
http.createServer(function (req,res) {
fs.readFile('demofile.html',function(err,data) {
res.writeHead(200,{'Content-Type': 'text/html'});
res.write(data);
res.end();
});
}).listen(8080);
console.log("Listening at 8080...");`
解决方法
这用于格式化。
,当您要将数据发送回客户端时,可以将标头发送到该客户端。
'Content-Type': 'text/html
与这段代码的客户端将找出它将接收html文件。
您可以将json文件或html文件发送回clinet。
'Content-Type': 'text/html
===>这将显示您正在发送html输出
'Content-Type': 'application json
====>这将显示您正在发送json输出
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。