接收到错误对象时如何停止函数?
How do you stop a function when an Error object is received?
如何在发生错误时停止函数。
我正在拨打 http post 电话。我构造了一个错误优先风格的回调函数。
如果传入错误对象,如何停止回调函数?在我的用例中,无论错误类型如何,我都需要停止,因为我需要用于后续回调函数链的数据对象。
只是return
吗?我已经阅读了 return 在更高层次上的作用,因此希望得到确认我的代码是否适合我想要实现的目标。
我只是想确保正在进行的回调函数不会继续,因为它们不会传递任何数据对象,因此,都将是 'errors'
server.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 {
//
}
我以前从未见过这种编码方式,所以如果不了解您真正想要做的事情,很难评论这是否是正确的方式。我假设块:
try {
var resultOne = requestSync()
var resultTwo = callback(resultOne)
// more async callback functions will reside here
} catch (e) {
console.error('error occured somehwere = ' + e);
} finally {
}
...调用另一个 "callback" 函数而不是第一个代码片段(否则您将 resultOne 作为第一个参数传递,回调函数会将其读取为有效的错误对象并抛出一个错误)。
但是,为了回答您的问题,代码是否会继续 运行 如果其中一个函数抛出错误,答案是否定的 - 它会直接转移到 catch 块。看看: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() 中,因此如果正确实现,它们应该等待结果为 return,然后再调用下一个函数。我可以推荐 to have a look at this answer 以获取有关实现 wrapAsync 和处理错误的正确方法的更多信息。
更新
我觉得举个例子很有趣,因为这个 post 已经很长了。看看this example i uploaded to Github,它可能会给你需要的答案。
So is the 'error' object passed back from the http call always recognised as an error object?
嗯,fibers/future 假定标准节点回调作为最后一个参数,错误对象作为第一个参数,结果对象作为第二个参数。只要是这种情况,错误就会在 "catch" 块中被捕获并且执行将停止。
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 只在服务器上工作,它假设你调用它的函数有一个回调作为最后一个(或唯一的)参数。该回调应该将错误作为第一个参数,将结果作为第二个参数。大多数节点功能(如果不是全部)将遵守这些规则。
如果你因为某些原因想自己处理回调,需要make shure 手动调用回调,如果没有错误则传入"null"作为第一个参数,否则会产生错误object 并在出现错误时将其作为第一个参数传递。看例子中的wrapAsyncTest.js。
更多的是 node.js 模式,但这是我使用的模式:
if (err) return callback(err, null);
console.log("no error here!");
callback(err, result);
如何在发生错误时停止函数。
我正在拨打 http post 电话。我构造了一个错误优先风格的回调函数。
如果传入错误对象,如何停止回调函数?在我的用例中,无论错误类型如何,我都需要停止,因为我需要用于后续回调函数链的数据对象。
只是return
吗?我已经阅读了 return 在更高层次上的作用,因此希望得到确认我的代码是否适合我想要实现的目标。
我只是想确保正在进行的回调函数不会继续,因为它们不会传递任何数据对象,因此,都将是 'errors'
server.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 {
//
}
我以前从未见过这种编码方式,所以如果不了解您真正想要做的事情,很难评论这是否是正确的方式。我假设块:
try {
var resultOne = requestSync()
var resultTwo = callback(resultOne)
// more async callback functions will reside here
} catch (e) {
console.error('error occured somehwere = ' + e);
} finally {
}
...调用另一个 "callback" 函数而不是第一个代码片段(否则您将 resultOne 作为第一个参数传递,回调函数会将其读取为有效的错误对象并抛出一个错误)。
但是,为了回答您的问题,代码是否会继续 运行 如果其中一个函数抛出错误,答案是否定的 - 它会直接转移到 catch 块。看看: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() 中,因此如果正确实现,它们应该等待结果为 return,然后再调用下一个函数。我可以推荐 to have a look at this answer 以获取有关实现 wrapAsync 和处理错误的正确方法的更多信息。
更新
我觉得举个例子很有趣,因为这个 post 已经很长了。看看this example i uploaded to Github,它可能会给你需要的答案。
So is the 'error' object passed back from the http call always recognised as an error object?
嗯,fibers/future 假定标准节点回调作为最后一个参数,错误对象作为第一个参数,结果对象作为第二个参数。只要是这种情况,错误就会在 "catch" 块中被捕获并且执行将停止。
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 只在服务器上工作,它假设你调用它的函数有一个回调作为最后一个(或唯一的)参数。该回调应该将错误作为第一个参数,将结果作为第二个参数。大多数节点功能(如果不是全部)将遵守这些规则。
如果你因为某些原因想自己处理回调,需要make shure 手动调用回调,如果没有错误则传入"null"作为第一个参数,否则会产生错误object 并在出现错误时将其作为第一个参数传递。看例子中的wrapAsyncTest.js。
更多的是 node.js 模式,但这是我使用的模式:
if (err) return callback(err, null);
console.log("no error here!");
callback(err, result);