- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如何在发生错误时停止该函数。
我正在进行 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/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!