1. 首页
  2. 考试认证
  3. 其它
  4. working with promises

working with promises

上传者: 2024-10-15 03:27:45上传 ZIP文件 2.65KB 热度 1次

使用承诺一个快速演示项目,同时我在找出承诺。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++)

用户评论