var http = require('http')
http.createServer( function (req,res) {
res.writeHead(200,{'Content-Type':'text-plain'})
res.end('hello world')
} ).listen(3000)
上述代码node test.js之后,打开浏览器,输入http://127.0.0.1:3000/
浏览器页面显示hello world。
使用.createServer方法创建一个服务器,然后调用.listen方法监听端口,之后每来一个客户端请求,创建服务器时传入的回调函数就被调用一次。
我的问题是,这里什么时候发送http请求了?代码里看不到啊?
浏览器显示
是不是输入url按下enter之后就会发送一个http请求?
相关分类