欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

深入理解JavaScript编程中的同步与异步机制

程序员文章站 2022-06-12 13:24:10
 javascript的优势之一是其如何处理异步代码。异步代码会被放入一个事件队列,等到所有其他代码执行后才进行,而不会阻塞线程。然而,对于初学者来说,书写异步代...

 javascript的优势之一是其如何处理异步代码。异步代码会被放入一个事件队列,等到所有其他代码执行后才进行,而不会阻塞线程。然而,对于初学者来说,书写异步代码可能会比较困难。而在这篇文章里,我将会消除你可能会有的任何困惑。
理解异步代码

javascript最基础的异步函数是settimeout和setinterval。settimeout会在一定时间后执行给定的函数。它接受一个回调函数作为第一参数和一个毫秒时间作为第二参数。以下是用法举例:
 

console.log( "a" );
settimeout(function() {
  console.log( "c" )
}, 500 );
settimeout(function() {
  console.log( "d" )
}, 500 );
settimeout(function() {
  console.log( "e" )
}, 500 );
console.log( "b" );

正如预期,控制台先输出“a”、“b”,大约500毫秒后,再看到“c”、“d”、“e”。我用“大约”是因为settimeout事实上是不可预知的。实际上,甚至 html5规范都提到了这个问题:

  •     “这个api不能保证计时会如期准确地运行。由于cpu负载、其他任务等所导致的延迟是可以预料到的。”


有趣的是,直到在同一程序段中所有其余的代码执行结束后,超时才会发生。所以如果设置了超时,同时执行了需长时间运行的函数,那么在该函数执行完成之前,超时甚至都不会启动。实际上,异步函数,如settimeout和setinterval,被压入了称之为event loop的队列。

event loop是一个回调函数队列。当异步函数执行时,回调函数会被压入这个队列。javascript引擎直到异步函数执行完成后,才会开始处理事件循环。这意味着javascript代码不是多线程的,即使表现的行为相似。事件循环是一个先进先出(fifo)队列,这说明回调是按照它们被加入队列的顺序执行的。javascript被 node选做为开发语言,就是因为写这样的代码多么简单啊。

ajax

异步javascript与xml(ajax)永久性的改变了javascript语言的状况。突然间,浏览器不再需要重新加载即可更新web页面。 在不同的浏览器中实现ajax的代码可能漫长并且乏味;但是,幸亏有jquery(还有其他库)的帮助,我们能够以很容易并且优雅的方式实现客户端-服务器端通讯。

我们可以使用jquery跨浏览器接口$.ajax很容易地检索数据,然而却不能呈现幕后发生了什么。比如:

var data;
$.ajax({
  url: "some/url/1",
  success: function( data ) {
    // but, this will!
    console.log( data );
  }
})
// oops, this won't work...
console.log( data );

较容易犯的错误,是在调用$.ajax之后马上使用data,但是实际上是这样的:
 

xmlhttp.open( "get", "some/ur/1", true );
xmlhttp.onreadystatechange = function( data ) {
  if ( xmlhttp.readystate === 4 ) {
    console.log( data );
  }
};
xmlhttp.send( null );

底层的xmlhttprequest对象发起请求,设置回调函数用来处理xhr的readystatechnage事件。然后执行xhr的send方法。在xhr运行中,当其属性readystate改变时readystatechange事件就会被触发,只有在xhr从远端服务器接收响应结束时回调函数才会触发执行。

处理异步代码

异步编程很容易陷入我们常说的“回调地狱”。因为事实上几乎js中的所有异步函数都用到了回调,连续执行几个异步函数的结果就是层层嵌套的回调函数以及随之而来的复杂代码。

node.js中的许多函数也是异步的。因此如下的代码基本上很常见:
 

var fs = require( "fs" );
fs.exists( "index.js", function() {
  fs.readfile( "index.js", "utf8", function( err, contents ) {
    contents = somefunction( contents ); // do something with contents
    fs.writefile( "index.js", "utf8", function() {
      console.log( "whew! done finally..." );
    });
  });
});
console.log( "executing..." );

下面的客户端代码也很多见:

 

gmaps.geocode({
  address: fromaddress,
  callback: function( results, status ) {
    if ( status == "ok" ) {
      fromlatlng = results[0].geometry.location;
      gmaps.geocode({
        address: toaddress,
        callback: function( results, status ) {
          if ( status == "ok" ) {
            tolatlng = results[0].geometry.location;
            map.getroutes({
              origin: [ fromlatlng.lat(), fromlatlng.lng() ],
              destination: [ tolatlng.lat(), tolatlng.lng() ],
              travelmode: "driving",
              unitsystem: "imperial",
              callback: function( e ){
                console.log( "annnnd finally here's the directions..." );
                // do something with e
              }
            });
          }
        }
      });
    }
  }
});

nested callbacks can get really nasty, but there are several solutions to this style of coding.

嵌套的回调很容易带来代码中的“坏味道”,不过你可以用以下的几种风格来尝试解决这个问题

  •     the problem isn't with the language itself; it's with the way programmers use the language — async javascript.

    没有糟糕的语言,只有糟糕的程序猿 ——异步javasript


命名函数

清除嵌套回调的一个便捷的解决方案是简单的避免双层以上的嵌套。传递一个命名函数给作为回调参数,而不是传递匿名函数:
 

var fromlatlng, tolatlng;
var routedone = function( e ){
  console.log( "annnnd finally here's the directions..." );
  // do something with e
};
var toaddressdone = function( results, status ) {
  if ( status == "ok" ) {
    tolatlng = results[0].geometry.location;
    map.getroutes({
      origin: [ fromlatlng.lat(), fromlatlng.lng() ],
      destination: [ tolatlng.lat(), tolatlng.lng() ],
      travelmode: "driving",
      unitsystem: "imperial",
      callback: routedone
    });
  }
};
var fromaddressdone = function( results, status ) {
  if ( status == "ok" ) {
    fromlatlng = results[0].geometry.location;
    gmaps.geocode({
      address: toaddress,
      callback: toaddressdone
    });
  }
};
gmaps.geocode({
  address: fromaddress,
  callback: fromaddressdone
});

此外, async.js 库可以帮助我们处理多重ajax requests/responses. 例如:
 

async.parallel([
  function( done ) {
    gmaps.geocode({
      address: toaddress,
      callback: function( result ) {
        done( null, result );
      }
    });
  },
  function( done ) {
    gmaps.geocode({
      address: fromaddress,
      callback: function( result ) {
        done( null, result );
      }
    });
  }
], function( errors, results ) {
  getroute( results[0], results[1] );
});

这段代码执行两个异步函数,每个函数都接收一个名为"done"的回调函数并在函数结束的时候调用它。当两个"done"回调函数结束后,parallel函数的回调函数被调用并执行或处理这两个异步函数产生的结果或错误。

promises模型
引自 commonjs/a:

  •     promise表示一个操作独立完成后返回的最终结果。

有很多库都包含了promise模型,其中jquery已经有了一个可使用且很出色的promise api。jquery在1.5版本引入了deferred对象,并可以在返回promise的函数中使用jquery.deferred的构造结果。而返回promise的函数则用于执行某种异步操作并解决完成后的延迟。
 

var geocode = function( address ) {
  var dfd = new $.deferred();
  gmaps.geocode({
    address: address,
    callback: function( response, status ) {
      return dfd.resolve( response );
    }
  });
  return dfd.promise();
};
var getroute = function( fromlatlng, tolatlng ) {
  var dfd = new $.deferred();
  map.getroutes({
    origin: [ fromlatlng.lat(), fromlatlng.lng() ],
    destination: [ tolatlng.lat(), tolatlng.lng() ],
    travelmode: "driving",
    unitsystem: "imperial",
    callback: function( e ) {
      return dfd.resolve( e );
    }
  });
  return dfd.promise();
};
var dosomethingcoolwithdirections = function( route ) {
  // do something with route
};
$.when( geocode( fromaddress ), geocode( toaddress ) ).
  then(function( fromlatlng, tolatlng ) {
    getroute( fromlatlng, tolatlng ).then( dosomethingcoolwithdirections );
  });

这允许你执行两个异步函数后,等待它们的结果,之后再用先前两个调用的结果来执行另外一个函数。

  •     promise表示一个操作独立完成后返回的最终结果。

在这段代码里,geocode方法执行了两次并返回了一个promise。异步函数之后执行,并在其回调里调用了resolve。然后,一旦两次调用resolve完成,then将会执行,其接收了之前两次调用geocode的返回结果。结果之后被传入getroute,此方法也返回一个promise。最终,当getroute的promise解决后,dosomethingcoolwithdirections回调就执行了。
 
事件
事件是另一种当异步回调完成处理后的通讯方式。一个对象可以成为发射器并派发事件,而另外的对象则监听这些事件。这种类型的事件处理方式称之为 观察者模式 。 backbone.js 库在withbackbone.events中就创建了这样的功能模块。
 

var somemodel = backbone.model.extend({
  url: "/someurl"
});
var someview = backbone.view.extend({
  initialize: function() {
    this.model.on( "reset", this.render, this );
    this.model.fetch();
  },
  render: function( data ) {
    // do something with data
  }
});
var view = new someview({
  model: new somemodel()
});

还有其他用于发射事件的混合例子和函数库,例如 jquery event emitter , eventemitter , monologue.js ,以及node.js内建的 eventemitter 模块。

  •     事件循环是一个回调函数的队列。

一个类似的派发消息的方式称为 中介者模式 , postal.js 库中用的即是这种方式。在中介者模式,有一个用于所有对象监听和派发事件的中间人。在这种模式下,一个对象不与另外的对象产生直接联系,从而使得对象间都互相分离。

绝不要返回promise到一个公用的api。这不仅关系到了api用户对promises的使用,也使得重构更加困难。不过,内部用途的promises和外部接口的事件的结合,却可以让应用更低耦合且便于测试。

在先前的例子里面,dosomethingcoolwithdirections回调函数在两个geocode函数完成后执行。然后,dosomethingcoolwithdirections才会获得从getroute接收到的响应,再将其作为消息发送出去。
 

var dosomethingcoolwithdirections = function( route ) {
  postal.channel( "ui" ).publish( "directions.done", {
    route: route
  });
};

这允许了应用的其他部分不需要直接引用产生请求的对象,就可以响应异步回调。而在取得命令时,很可能页面的好多区域都需要更新。在一个典型的jquery ajax过程中,当接收到的命令变化时,要顺利的回调可能就得做相应的调整了。这可能会使得代码难以维护,但通过使用消息,处理ui多个区域的更新就会简单得多了。
 

var ui = function() {
  this.channel = postal.channel( "ui" );
  this.channel.subscribe( "directions.done", this.updatedirections ).withcontext( this );
};
ui.prototype.updatedirections = function( data ) {
  // the route is available on data.route, now just update the ui
};
app.ui = new ui();

另外一些基于中介者模式传送消息的库有 amplify, pubsubjs, and radio.js。

结论

javascript 使得编写异步代码很容易. 使用 promises, 事件, 或者命名函数来避免“callback hell”. 为获取更多javascript异步编程信息,请点击async javascript: build more responsive apps with less . 更多的实例托管在github上,地址nettutsasyncjs,赶快clone吧 !