假如我有如下代码 request('http://www.baidu.com’, function (error, response, body) { if (!error && response.statusCode == 200) { console.log(body) // Print the google web page. } });
此段代码一共100 段,,也就是有访问百度网站100次的,
这100个请求在node里同时执行的呢?还是依次执行的?
假如我有如下代码 request('http://www.baidu.com’, function (error, response, body) { if (!error && response.statusCode == 200) { console.log(body) // Print the google web page. } });
此段代码一共100 段,,也就是有访问百度网站100次的,
这100个请求在node里同时执行的呢?还是依次执行的?