gpt4 book ai didi

node.js - Node.js 上的条件断点

转载 作者:太空宇宙 更新时间:2023-11-04 00:43:32 25 4
gpt4 key购买 nike

我正在尝试使用此功能检索 Facebook feed

函数 getFeeds(url,page,id,count){

graph.get(url, function(err, res) {


if(!err){
res.data.forEach(function(item) {
id.push(item);
});
if ( res.paging.next && count>0) setTimeout(getFeeds(res.paging.next,page,id,count-1),100)
else {
id.forEach(function(item){
console.log(item);
})
};
}
});
};

但是,该函数返回此错误

/Users/adelessafi/fb/getfeeds.js:20
if (res.paging.next && count>0) setTimeout(getFeeds(res.paging.next,page,id,count-1),100)
^

TypeError: Cannot read property 'next' of undefined
at Graph.callback (/Users/adelessafi/fb/getfeeds.js:20:20)
at Graph.end (/Users/adelessafi/fb/node_modules/fbgraph/lib/graph.js:170:8)

我想在错误发生之前停止执行脚本。请注意,我的脚本进行了大量调用,因此我必须设置一个条件断点。

提前感谢您的参与

最佳答案

可以通过放置调试器来模拟它; if 中的语句。

if (condition) {
debugger;
}

只需确保您的调试器已连接。

关于node.js - Node.js 上的条件断点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35791648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com