0

我正在尝试将 node.js 作为一种可能的技术,而不是针对我的学校项目的传统 php 服务器,我正在尝试启动一个打印 hello 的服务器,但由于某种原因,我的 localhost 不会显示它,它只等待 localhost很长时间。任何帮助,将不胜感激

var http = require("http");

http.createServer(function (request, response) {
   request.on("end", function () {
      response.writeHead(200, {
         'Content-Type': 'text/plain'
      });
      response.end('Hello HTTP!');
   });
}).listen(8080);
4

1 回答 1

0

你不需要request.on("end")

http.createServer(function (request, response) {
  response.writeHead(200, {
    'Content-Type': 'text/plain'
  });
  response.end('Hello HTTP!');
}).listen(8080);
于 2013-07-16T20:59:08.560 回答