gpt4 book ai didi

javascript - 如何在序列异步函数中处理数组

转载 作者:行者123 更新时间:2023-12-01 00:36:06 25 4
gpt4 key购买 nike

我正在尝试制作一个包含 Shopify 订单和图片链接的表格。但异步循环有问题。每次我运行代码的顺序都会以错误的顺序出现在控制台中,例如 998、996、1000...应该是 1000、999、998...我尝试在不同的地方添加 async 关键字,并将一个函数包装在 settimeout 函数等中,但没有成功。如何让订单列表按正确的顺序排列?预先感谢您。

const {google} = require('googleapis');
const keys = require('./keys.json');
const Shopify = require('shopify-api-node');
const client = new google.auth.JWT(
keys.client_email,
null,
keys.private_key,
['https://www.googleapis.com/auth/spreadsheets',
'https://www.googleapis.com/auth/drive.metadata.readonly']
);
const shopify = new Shopify({
shopName: 'name.myshopify.com',
apiKey: 'key',
password: 'pas'
});
const sheets = google.sheets({version: 'v4', auth: client});
const drive = google.drive({version: 'v3', auth: client});

function getLink(){
client.authorize(()=> gsrun());
}

async function runDrive(ord, sku){
const resDrive = await drive.files.list({
pageSize: 1,
q: `name contains "sku"`,
spaces: 'drive',
});
const files = resDrive.data.files;
let link;
if (files.length) {
link = `https://drive.google.com/file/d/${files[0].id}/view`;
} else {
// console.log('No files found.');
link = 'No files found.';
}
console.log([ord, sku, link])
}

async function gsrun(){
// Shopify - Get orders list
let orders = await shopify.order.list({ limit: 7 });
ordersArray = orders.forEach(ord => {
skuArray = ord.line_items.forEach(async (item) => {
// Drive - Search for SKUs
runDrive(ord.order_number, item.sku)
})
})
}
getLink()

最佳答案

对于forEach,异步执行的顺序不是连续的。您可以尝试在 gsrun 函数中使用 for of 而不是 forEach:

async function gsrun(){
// Shopify - Get orders list
let orders = await shopify.order.list({ limit: 7 });
for (const ord of orders) {
for (const item of ord.line_items) {
await runDrive(ord.order_number, item.sku)
}
}
}

关于javascript - 如何在序列异步函数中处理数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58123460/

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