在 Async 编程上, 我们使用许多回调, 比如这样:
var running = function(){
do_sth();
$.post("/xxx", function(data){
do_sth2();
$.get("/ttt", function(data){
do_sth3();
}
}
}
我认为事情应该是这样的:
var running = do_async(function(){
do_sth();
var data = $.post("/xxx");
do_sth2();
data = $.get("/ttt");
do_sth3();
});
我怎样才能做到呢?
还有一个关于这个项目的项目:https://github.com/Jeffrey Zhao/jscex
我认为这个项目不是那么容易使用(通过分析源代码来实施)
也许在未来,我们有 本地的玉印支持吗?
我对此做了一些研究, 发现一些震撼和图书馆在这里供参考:
https://github.com/Jeffrey Zhao/jscex
defer coffeescript https://github.com/jashkenas/coffee-script/issues/350
merge into coffeescript: https://github.com/jashkenas/coffee-script/issues/350
tamejs library http://tamejs.org/
stratifiedjs http://onilabs.com/stratifiedjs
kaffeine http://weepy.github.com/kaffeine/
wiki page about this: http://en.wikipedia.org/wiki/Continuation-passing_style
增加一个图书馆来支持它并不容易,
也许在未来, Javascript 会添加一个“ferfer”关键字。
同一问题:< a href='