Node.js server just keeps loading with no result.
问题 I have been trying to get my server to work but when I send post data it just keeps loading and no results are given. Here is my noen.js file. var http = require('http'); var url = require('url'); // Configure our HTTP server to respond with Hello World to all requests. var server = http.createServer(function (request, response) { var queryData = url.parse(request.url, true).query; response.writeHead(200, {"Content-Type": "text/plain"}); if (queryData.name) { // user told us their name in the