基本上,我有一系列attemptsArray
使用 FullContact 的 API 查找的电子邮件 ( )。
attemptsArray.forEach(function(attempt) {
$.fullcontact.emailLookup(APIKEY, attempt, function(obj) {
attemptsMade = attemptsMade + 1
console.log(attemptsMade);
console.log('Looking up '+attempt+' ...This is attempt number'+attemptsMade)
if (obj.status == 200) {
var score = obj.likelihood;
console.log('Matched with a '+score+' likelihood')
correctAttempts.push(obj);
};
});
});
但是,如果返回 404(即电子邮件不存在),则不会增加attemptsMade
. 有没有办法确保这种情况发生?我试过做一个if (obj.status == 404)
,但这也不起作用。