gpt4 book ai didi

node.js - 用户定义的错误未打印

转载 作者:行者123 更新时间:2023-12-03 09:01:44 24 4
gpt4 key购买 nike

axios.get(geocodeUrl).then((response) =>
{
if(response.data.status === 'ZERO_RESULTS')
{
throw new ERROR('Unable To Find That Address');
}
console.log(JSON.stringify(response.data, undefined ,2));
}).catch((e)=> {
if(e.code === 'ENOTFOUND')
{
console.log('Unable to contact api servers');
}
else {
console.log(e.message);
console.log("xyz");
}
});

它打印:
"Error is not defined"
代替
"Unable to find that address"xyz被打印。

最佳答案

在这里您做了语法错误,即ERROR不应写在UpperCase中,应该像Error一样。这就是为什么它无法识别Error关键字。

所以更正是在这一行:

throw new Error('Unable To Find That Address');

关于node.js - 用户定义的错误未打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49842550/

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