我是新來的nodeJS和triyng來學習它。
我試圖執行來自http://net.tutsplus.com/tutorials/javascript-ajax/node-js-for-beginners/ hello世界的例子,但我沒有得到任何輸出,我在Chrome瀏覽器上沒有收到數據接收頁面。
我已經在我的電腦上安裝了apache(XAMPP),但它並不活躍,並且當我試圖在終端中運行node http.js
時,我沒有收到任何輸出。
我有另一個文件,hello.js其中包含console.log('Hello World!');
當我運行node hello.js
我在終端輸出Hello World!
。 但http.js
不起作用。
http.js代碼:http:// localhost:8080 /不工作
// Include http module.
var http = require("http");
// Create the server. Function passed as parameter is called on every request made.
// request variable holds all request parameters
// response variable allows you to do anything with response sent to the client.
http.createServer(function (request, response) {
// Attach listener on end event.
// This event is called when client sent all data and is waiting for response.
request.on("end", function() {
// Write headers to the response.
// 200 is HTTP status code (this one means success)
// Second parameter holds header fields in object
// We are sending plain text, so Content-Type should be text/plain
response.writeHead(200, {
'Content-Type': 'text/plain'
});
// Send data and end response.
response.end('Hello HTTP!');
});
// Listen on the 8080 port.
}).listen(8080);
您是否在控制檯中發現任何錯誤?關於發生了什麼的任何提示?當我在瀏覽器中轉到localhost:8080時,此代碼適用於我。你有沒有嘗試在瀏覽器中輸入:http://127.0.0.1:8080?在我的瀏覽器中,http://127.0.0.1:8080和http:// localhost:8080都適用於我,但您需要在url中指定8080端口。 – thtsigma
你使用代理服務? –
控制檯中沒有錯誤,我在這裏沒有使用代理。 –