gpt4 book ai didi

javascript - 如何在Node.js的回调中处理错误

转载 作者:行者123 更新时间:2023-12-03 08:18:26 25 4
gpt4 key购买 nike

我有这段代码可以调用一个函数,并具有一个带有错误和数据参数的回调:

app.get('/lights', (req,res) => {
hue.getLights(function(err, data){
if(err) res.status(401).send("An error occured: ", err.message);
res.send(data);
});
})
它调用的功能是:
let getLights = function(callback){
fetch(`http://${gateway}/api/${username}/lights`, {
method: 'GET'
}).then((res) => {
if(res.ok){
return res.json();
}else{
throw new Error(res.message);
}
}).then((json) => {
lightsArray = []
for (var i in json){
lightsArray.push(`ID: ${i} Name: ${json[i]['name']}`);
}
return callback(lightsArray);
});
}
当我发生错误时,未捕获到该错误,也未显示任何错误,该应用程序崩溃并显示以下消息: UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().现在我知道我很想念很多,这是我第一次使用回调,更不用说处理错误了。
有人可以帮助我使错误回调正常工作,还向我展示我所做的一些缺陷,因为我知道这不会捕获可能发生的所有错误,而只能捕获使用fetch函数导致的错误。
谢谢!
这是我的另一个功能(类似,但也使用catch,我想我也做错了):
let getLightDetails = function (ID, callback) {
fetch(`http://${gateway}/api/${username}/lights/${ID}`, {
method: 'GET'
}).then((res) => {
if(res.ok){
return res.json();
}else{
throw new Error(res.message);
}
}).then((json) => {
return callback(json);
})
.catch((err) => {
console.log(err);
return callback(err.message);
});
}

最佳答案

混合使用回调和Promise可能会使您的代码有些困惑。我会遵守 promise :

app.get('/lights', (req, res) => {
return hue.getLights()
.then(data => {
res.send(data);
})
.catch(err => {
res.status(401).send("An error occured: ", err.message);
});
})
hue.js
const fetch = require('node-fetch');
const gateway = "192.168.0.12";
const username = "username-A";

function fetchAPI(url, ...rest) {
return fetch(`http://${gateway}/api/${username}${url}`, ...rest);
}

function getLights() {
return fetchAPI(`/lights`)
.then(res => res.json())
.then(json => json.map((light, i) => `ID: ${i} Name: ${light.name}`));
}

function getLightDetails(id) {
return fetchAPI(`/lights/${id}`)
.then(res => res.json());
}

function getLightState(id) {
return fetchAPI(`/lights/${id}`)
.then(res => res.json())
.then(light => `Name: ${light.name} On: ${light.state.on}`);
}

function setLightState(id, state) {
return fetchAPI(`/lights/${id}/state`, {
method: 'PUT',
body: JSON.stringify({"on": state })
}).then(res => res.json());
}

module.exports = { getLights, getLightDetails, getLightState, setLightState };

关于javascript - 如何在Node.js的回调中处理错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62764720/

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