我有 getProductInfo orgianlly,作为两个参数,它的位置是(res,sku)。但现在我想传递一个带有 sku 编号的集合对象和 for-each res.send 数据
const activeProductBank = new Set([6401728, 6430161, 6359222, 6368084]);
getProductInfo = (res) => {
activeProductBank.forEach((SKU) => {
bby.products(SKU, { show:'sku,name' })
.then(function(data) {
res.send(data);
});
})
};
也尝试过这个
getProductInfo = (res) => {
const allProductInfo = '';
activeProductBank.forEach((SKU) => {
bby.products(SKU, { show:'sku,name'})
.then(function(data) {
allProductInfo.concat(data);
});
})
res.send(allProductInfo);
};
我收到的错误“应用程序正在监听 http://localhost:3000 (node:25556) UnhandledPromiseRejectionWarning: 错误: 超出最大重试次数”
喵喵时光机
相关分类