working with promises
使用承诺一个快速演示项目,同时我在找出承诺。q.call将带有回调的函数转换为承诺。回调的参数成为then的参数。 q.call(http.request, { host: 'www.google.com', port: 80 }).then(function(response) { console.log(response); });调用q.fcall将任何函数转换为回调。函数的结果传递给then。function sum(a, b) { var sum = 0; for (var i = 0, len = arguments.length; i < len; i++)
用户评论