图片不会显示在Node HTTP上

时间:2019-04-19 02:05:04

标签: html node.js http

我试图在我的网站上使用Node JS,并且每当我通过LocalHost加载页面时,都不会显示任何图像。我找不到任何可在网上使用的东西,如果有的话,我可能只是很愚蠢。感谢您的帮助。

代码:

var http = require('http');
var fs = require('fs');
var server = http.createServer(function(req, res) {
  console.log(`request was made by: ` + req.url);
  res.writeHead(200, {'Content-Type': 'text/html'});
  var myReadStream = fs.createReadStream(__dirname + '/oogcopy.html', 'utf8');
  myReadStream.pipe(res);
});

server.listen(3000, `127.0.0.1`);
console.log(`Yo dawgs`);

0 个答案:

没有答案