gpt4 book ai didi

javascript - promise 链断裂

转载 作者:行者123 更新时间:2023-11-28 00:14:28 25 4
gpt4 key购买 nike

我的 promise 链(bluebird)破裂了,我不明白为什么。

 Promise.resolve()
.then(function() {
[..]
})
.then(function() {
[..]
})
.then(function() {
[..]
})
.spread(function(instance) {
[..]
})

此操作失败,并出现 .spread 上的 TypeError: undefined is not a function 。最后一个 .then() 上的 console.log 显示它返回 {}。将 spread 替换为 then 使代码运行。我究竟做错了什么?什么会使传播变得不确定?

<小时/>

更新:将最后一个spread更改为下面的代码使其可以工作。

   .then(function(arr) {
var instance = arr[0];
[..]
})

最佳答案

我是个白痴:)错过了在该文件中包含bluebird,所以它使用了native implementation of promises没有传播

关于javascript - promise 链断裂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30589825/

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