内容简介:翻译自:https://stackoverflow.com/questions/11062995/using-nodejs-async-and-request-module
我正在尝试一起使用异步和请求模块,但我不明白回调是如何传递的.我的代码是
var fetch = function(file, cb) { return request(file, cb); }; async.map(['file1', 'file2', 'file3'], fetch, function(err, resp, body) { // is this function passed as an argument to _fetch_ // or is it excecuted as a callback at the end of all the request? // if so how do i pass a callback to the _fetch_ function if(!err) console.log(body); });
我正在尝试按顺序获取3个文件并连接结果.我的头脑陷入了我试过的回调和我能想到的不同组合.谷歌帮助不大.
请求是异步函数,它不会返回一些东西,当它的工作完成时,它会回调.从 request examples
开始,您应该执行以下操作:
var fetch = function(file,cb){ request.get(file, function(err,response,body){ if ( err){ cb(err); } else { cb(null, body); // First param indicates error, null=> no error } }); } async.map(["file1", "file2", "file3"], fetch, function(err, results){ if ( err){ // either file1, file2 or file3 has raised an error, so you should not use results and handle the error } else { // results[0] -> "file1" body // results[1] -> "file2" body // results[2] -> "file3" body } });
翻译自:https://stackoverflow.com/questions/11062995/using-nodejs-async-and-request-module
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 详解nginx的请求限制(连接限制和请求限制)
- angular请求防抖,以及处理第一次请求失效
- RxHttp 一条链发送请求,新一代Http请求神器(一)
- RxHttp 一条链发送请求,新一代Http请求神器(一)
- 利用Jsonp跨域请求数据(原生和Jquery的ajax请求),简单易懂!
- Python网络请求库Requests,妈妈再也不担心我的网络请求了
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Effective STL中文版
[美]Scott Meyers / 潘爱民、陈铭、邹开红 / 清华大学出版社 / 2006-1 / 30.00元
STL是C++标准库的一部分。本书是针对STL的经验总结,书中列出了50个条款,绝大多数条款都解释了在使用STL时应该注意的某一个方面的问题,并且详尽地分析了问题的来源、解决方案的优劣。一起来看看 《Effective STL中文版》 这本书的介绍吧!