nodejs回调与python

回调

这里我用自己的理解来说明nodejs的回调。

var http = require("http");

http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}).listen(8888);

这里是一段服务器的例子。

我们需要服务器一直监听端口,并且在信息到来得时候,执行一些动作这一个异步的动作。

和python比较

while true :
      value = listen(8888)
      if value:
            do something

可以看到,当执行一个动作的时候停止监听。

你可能感兴趣的:(nodejs回调与python)