gpt4 book ai didi

javascript - JS Promise 返回

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

我目前正在努力从链式事件中返回一个值,从而导致 Promise 以挂起状态返回。

我的代码返回特定 Shopify 产品的元字段对象数组,然后我对其进行解析并希望返回一个整数值。

然而,当我调试我的代码时,我得到的只是一个处于挂起状态的 promise ,而不是一个在使用范围内的已执行值。

我猜这主要是因为我对 promises 不熟悉。

非常感谢任何帮助!

var quantity = shopify.metafield.list({
metafield: { owner_resource: 'product', owner_id: line_item.product_id }
}).then(metafields => new Promise(function(resolve, reject) {

//simplified code
resolve(2);
}))
.catch(error => console.log(error));

最佳答案

shopify.metafield.list({
metafield: { owner_resource: 'product', owner_id: line_item.product_id }
}).then(metafields => new Promise(function(resolve, reject) {

//simplified code
resolve(2);
})).then((quantity)=> console.log(quantity))
.catch(error => console.log(error));

第二个 .then() 函数正在返回一个新的 promise,因此您需要再次链接 .then() 函数以获得从 promise(resolve) 返回的准确值

其他方法是只对包含第二个 .then() 函数返回的 promise 的数量变量使用 .then() 函数

quantity.then((res)=> console.log(res)) 

关于javascript - JS Promise <Pending> 返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50726371/

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