gpt4 book ai didi

javascript - 我在 nodejs 中有一个查询,想要从查询中返回 numOfComment 的值。但这是行不通的。请注意,这段代码外面有一个循环

转载 作者:行者123 更新时间:2023-11-29 18:27:48 25 4
gpt4 key购买 nike

当评论大于前一个评论时,我想通过变量 numOfComment 发送一个值。当我放入查询中时我得到了答案,但它在查询之外不起作用。我也无法在查询中继续/中断它。请帮助我

        if(domainName.includes(givenUrl)){
tmpDomain = domainName;
con.query("SELECT comment FROM comments WHERE domain=?", tmpDomain, function(err, result, feild){
tmpNumOfComment = result.length;
if(tmpNumOfComment>numOfComment){
numOfComment = tmpNumOfComment;
}
});

console.log('Number Of Comment : '+numOfComment);
}

最佳答案

查询有回调。这意味着您的 console.log 命令很可能在从数据库返回之前执行。尝试这样运行

        if(domainName.includes(givenUrl)){
tmpDomain = domainName;
con.query("SELECT comment FROM comments WHERE domain=?", tmpDomain, function(err, result, feild){
tmpNumOfComment = result.length;
if(tmpNumOfComment>numOfComment){
numOfComment = tmpNumOfComment;
console.log('Number Of Comment : '+numOfComment);
}
});


}

关于javascript - 我在 nodejs 中有一个查询,想要从查询中返回 numOfComment 的值。但这是行不通的。请注意,这段代码外面有一个循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46007338/

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