gpt4 book ai didi

node.js - 当收到 Error 对象时如何停止函数?

转载 作者:太空宇宙 更新时间:2023-11-03 23:38:12 24 4
gpt4 key购买 nike

如何在发生错误时停止该函数。

我正在进行 http post 调用。我构建了一个错误优先风格的回调函数。

如果回调函数中传递了 Error 对象,如何停止它?在我的用例中,无论错误类型如何,我都需要停止,因为我需要数据对象用于后续的回调函数链。

只是返回吗?我已经阅读了 return 在更高级别上的作用,因此希望得到确认我的代码是否适合我想要实现的目标。

我只是想确保正在进行的回调函数不会继续,因为它们不会传递任何数据对象,因此,都将是“错误”

服务器.js

var request = function(callback) {
// HTTP call to server
},  
function (error, response, body) {    
if (!error && response.statusCode === 200) {
// processed and created data object
return callback(null, data)
}
else {
console.log(error.stack)
return callback(error) ;
}
})
};
var requestSync = Meteor.wrapAsync(request);


var callback = function(error, data, callback) {
if (error) {
// How do I properly stop this function?
return callback(new Error('custom message I send to client'))
}
else {
// doing something with data object..
}
}

这些函数在我的方法中调用。

try {
var resultOne = requestSync()
var resultTwo = callback(resultOne)
// more async callback functions will reside here
} catch (e) {
console.error('error occured somehwere = ' + e);
} finally {
//
}

最佳答案

我以前没有见过这种编码方式,所以在不了解你真正想要做什么的情况下很难评论这是否是正确的方式。我假设该 block :

try {
var resultOne = requestSync()
var resultTwo = callback(resultOne)
// more async callback functions will reside here
} catch (e) {
console.error('error occured somehwere = ' + e);
} finally {
}

...调用第一个代码片段之外的另一个“回调”函数(或者您将 resultOne 作为第一个参数传递,回调函数会将其读取为有效的错误对象并抛出错误)。

但是,为了回答您担心如果其中一个函数抛出错误代码是否会继续运行,答案是否定的 - 它将直接转移到 catch block 。看看:this documentation at MDN

特别是这部分:

A catch clause contain statements that specify what to do if an exception is thrown in the try block. That is, you want the try block to succeed, and if it does not succeed, you want control to pass to the catch block. If any statement within the try block (or in a function called from within the try block) throws an exception, control immediately shifts to the catch clause. If no exception is thrown in the try block, the catch clause is skipped.

我希望这能回答您的主要问题。由于您似乎将所有异步调用包装在 Meteor.wrapAsync() 中,因此如果正确实现,它们应该等待结果返回,然后再调用下一个函数。我可以推荐to have a look at this answer有关实现wrapAsync和处理错误的正确方法的更多信息。

更新

我认为举一个例子很有趣,因为这篇文章已经很长了。看看this example i uploaded to Github ,它可能会给您所需的答案。

So is the 'error' object passed back from the http call always recognised as an error object?

好吧,Fibres/Future 假定标准 Node 回调作为最后一个参数,错误对象作为第一个参数,结果对象作为第二个参数。只要是这种情况,错误就会被“catch” block 捕获,并且执行将会停止。

If so, how can I append another field so the error makes sense for me?

不确定您在这里的具体想法,但请查看我在 Github 上的示例。我在那里创建了一个错误对象。如果您不使用 setTimeout (其中我只是模拟异步调用),请以相同的方式构造您的函数,从远程调用捕获错误对象,向其附加一个字段或将 err.message 更改为对您更有意义的内容,然后调用回调,我认为这应该可行,但我还没有对此进行测试。

If there is an error but no error object is passed, what is the node convention to create an error object that I can return?

再次查看示例。 wrapAsync 仅在服务器上工作,它假设您调用它的函数有一个回调作为最后一个(或唯一的)参数。该回调应该将错误作为第一个参数,将结果作为第二个参数。大多数 Node 功能(如果不是全部)将遵守这些规则。

如果您出于某种原因想要自己处理回调,则需要确保手动调用回调,如果没有错误,则传入“null”作为第一个参数,或者如果有错误,则创建一个错误对象并将其作为第一个参数传入。查看示例中的wrapAsyncTest.js。

关于node.js - 当收到 Error 对象时如何停止函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28703715/

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