美文网首页
nodejs回调与python

nodejs回调与python

作者: comboo | 来源:发表于2017-06-08 19:21 被阅读124次

    回调

    这里我用自己的理解来说明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

          本文链接:https://www.haomeiwen.com/subject/pumtqxtx.html