http请求什么时候发送的?

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请求了?代码里看不到啊?
浏览器显示

https://img1.mukewang.com/5c417e94000123a008000408.jpg

是不是输入url按下enter之后就会发送一个http请求?


当年话下
浏览 450回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript