我正在探索 node.js 异步库以在 node.js 中实现游标(https://dev.twitter.com/docs/misc/cursoring)。
whilst
看起来像我正在寻找的功能,但我的情况有点不同。每次我发出GET
请求时,我都必须等待得到响应,然后更改光标值。
在async
文档中,这是给出的示例whilst
var count = 0;
async.whilst(
function () { return count < 5; },
function (callback) {
count++;
setTimeout(callback, 1000);
},
function (err) {
// 5 seconds have passed
}
);
我尝试做类似的事情来实现 twitter 光标导航,但它似乎不起作用:
async.whilst(
function(){return cursor != 0},
function(callback){
oa.get(
'https://api.twitter.com/1.1/friends/list.json?cursor=' + cursor + '&skip_status=true&include_user_entities=false'
,user.token //test user token
,user.tokenSecret //test user secret
,function (e, data, res){
if (e) console.error(e);
console.log("I AM HERE");
cursor = JSON.parse(data).next_cursor;
}
)
},
function(){
console.log(cursor);//should print 0
}
)
编辑:我的 get 请求回调中的 console.log("I AM HERE") 只被调用一次,之后什么也没有发生..
我不认为中间的函数应该有一个改变计数器的回调,并且whilst
只有在计数器在实际函数中而不是在它的回调中改变时才起作用。