server.js沒有錯誤消息運行時,仍然在瀏覽器http://localhost:1337留空白,而不是「你好的Node.js」爲什麼?運行的NodeJS但沒有輸出「你好」(模塊使用)
server.js:
var hello = require('./hello');
var http = require('http');
var ipaddress = '127.0.0.1';
var port = 1337;
var server = http.createServer(hello.onRequest);
server.listen(port, ipaddress);
hello.js:
exports.module = {
hello: function (req, res) {
res.end('Hello Node.js');
}
,
onRequest: function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
hello (req, res)
}
}
and ...'hello(req,res)'不會引發錯誤?啊,*,因爲它永遠不會被調用。* –