gpt4 book ai didi

javascript - 解构 promise 回调

转载 作者:行者123 更新时间:2023-11-30 15:06:22 27 4
gpt4 key购买 nike

我的代码中有一个 promise :

req.getValidationResult()
.then(result => {
let errors = result.array();
if (errors.length) {
return res.status(400).json({ errors: errors });
}

return next();
});

我想知道是否有任何变体可以在 then 调用时解构我的“结果”变量(类似于 .then({result.array(): errors} =>... ) 而不是进行 let errors = result.array(); 赋值。

最佳答案

我相信原生 promise 是不可能的。您可以稍微更改此代码:

req.getValidationResult()
.then(({array}) => array())
.then(errors => {
if (errors.length) {
return res.status(400).json({ errors: errors });
}
return next();
});

或者您可以使用 bluebird 。它有一个 call 方法:

req.getValidationResult()
.call('array')
.then(errors => {
if (errors.length) {
return res.status(400).json({ errors: errors });
}
return next();
});

但在这种情况下,您需要将您的 promise 转换到 Bluebird promise

关于javascript - 解构 promise 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45691170/

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