localhost:8888 /下载文件

now*_*yyy -1 node.js

我正在尝试学习node.js. 我做了一个http服务器:

 http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "test/html"});
  response.write("Hello World");
  response.end();
  }).listen(8888);
Run Code Online (Sandbox Code Playgroud)

当我转到localhost:8888 /时,页面假设说"Hello World",而是一个文件下载,其中包含"Hello World".这是假设发生的事吗?

Kri*_*bic 7

看起来您已将Content-Type设置为test/html而不是text/html.您的浏览器不知道如何处理,test/html因此它为您提供了下载文件的选项.