gpt4 book ai didi

javascript - 如何从控制台日志读取以及如果错误包含字符串 "up-to-data"则通过 'if' 循环而不会出现错误

转载 作者:行者123 更新时间:2023-12-03 05:42:12 27 4
gpt4 key购买 nike

  p4.run("sync", filename, function (syncerror, updatedDate) {
var logdata = console.log(syncerror);
if() {
}
});

我不知道如何实现这个..如果存在包含字符串“up-to-date”的错误,则“if”循环需要顺利通过。

最佳答案

p4.run("sync", filename, function (syncerror, updatedDate) {
var logdata = syncerror.toString();
if(logdata.indexOf('up-to-date')!==-1){
return true;
} else {
console.log('not found');
throw new Error(syncerror.message);
}
});

我是这样理解的。这个对我有用。感谢您的提示作废!

关于javascript - 如何从控制台日志读取以及如果错误包含字符串 "up-to-data"则通过 'if' 循环而不会出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40482652/

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