我在尝试开始 Node.js 时查看了这篇文章,并开始使用本指南来学习基础知识。
我的服务器的代码是:
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);
当我转到 localhost:8080(根据指南)时,我收到“未收到数据”错误。我已经看到一些页面说 https:// 是必需的,但会返回“SSL 连接错误”。我无法弄清楚我错过了什么。