更新2
完整的代码列表
var request = require('request');
var cache = require('memory-cache');
var async = require('async');
var server = '172.16.221.190'
var user = 'admin'
var password ='Passw0rd'
var dn ='\\VE\\Policy\\Objects'
var jsonpayload = {"Username": user, "Password": password}
async.waterfall([
//Get the API Key
function(callback){
request.post({uri: 'http://' + server +'/sdk/authorize/',
json: jsonpayload,
headers: {'content_type': 'application/json'}
}, function (e, r, body) {
callback(null, body.APIKey);
})
},
//List the credential objects
function(apikey, callback){
var jsonpayload2 = {"ObjectDN": dn, "Recursive": true}
request.post({uri: 'http://' + server +'/sdk/Config/enumerate?apikey=' + apikey,
json: jsonpayload2,
headers: {'content_type': 'application/json'}
}, function (e, r, body) {
var dns = [];
for (var i = 0; i < body.Objects.length; i++) {
dns.push({'name': body.Objects[i].Name, 'dn': body.Objects[i].DN})
}
callback(null, dns, apikey);
})
},
function(dns, apikey, callback){
// console.log(dns)
var cb = [];
for (var i = 0; i < dns.length; i++) {
//Retrieve the credential
var jsonpayload3 = {"CredentialPath": dns[i].dn, "Pattern": null, "Recursive": false}
console.log(dns[i].dn)
request.post({uri: 'http://' + server +'/sdk/credentials/retrieve?apikey=' + apikey,
json: jsonpayload3,
headers: {'content_type': 'application/json'}
}, function (e, r, body) {
// console.log(body)
cb.push({'cl': body.Classname})
callback(null, cb, apikey);
console.log(cb)
});
}
}
], function (err, result) {
// console.log(result)
// result now equals 'done'
});
更新
我正在构建一个小型应用程序,它需要对外部API进行多次HTTP调用,并将结果合并到一个对象或数组中。 e.g。
下面的原始问题概述了我迄今为止所尝试过的内容!
原始问题:
async.waterfall方法是否支持多个回调?
即。迭代从链中的前一项传递的数组,然后调用多个http请求,每个http请求都有自己的回调。
e.g,
sync.waterfall([
function(dns, key, callback){
var cb = [];
for (var i = 0; i < dns.length; i++) {
//Retrieve the credential
var jsonpayload3 = {"Cred": dns[i].DN, "Pattern": null, "Recursive": false}
console.log(dns[i].DN)
request.post({uri: 'http://' + vedserver +'/api/cred/retrieve?apikey=' + key,
json: jsonpayload3,
headers: {'content_type': 'application/json'}
}, function (e, r, body) {
console.log(body)
cb.push({'cl': body.Classname})
callback(null, cb, key);
});
}
}
答案 0 :(得分:2)
我希望我能正确理解你的问题。在我看来,你想为dns
中的每个项目调用api,并且需要知道它们何时完成。当你有一系列使用前一个函数结果的函数时,通常会使用async.waterfall。在你的情况下,我只能看到你需要在一次回调中使用所有api调用的结果。既然你也想创建一个新的数组,我会使用async.map。
<强>更新强>
如果你想在async.waterfall中创建一个循环,async.each / map是首选的武器。下面的代码将在调用每个dns时调用waterfall-callback。
async.waterfall([
// ...,
function(dns, apikey, callback){
async.map(dns, function (item, next) {
var jsonpayload3 = {
Cred: dns[i].DN,
Pattern: null,
Recursive: false
};
request.post({
uri: 'http://' + vedserver +'/api/cred/retrieve?apikey=' + key,
json: jsonpayload3,
headers: {'content_type': 'application/json'}
}, function (e, r, body) {
next(e, { cl: body.Classname });
});
},
callback);
}],
function (err, result) {
// result now looks like [{ cl: <body.Classname> }]
});