這是代碼片段。我想訪問每個內部的 imagePath 數(shù)組。...const imagePath=[]; req.files.images.forEach(async (image) => { let extName = path.extname(image.name); var dest = path.join(__dirname, '..', 'public', 'images', 'items'); var imgPath = await saveFile(image, dest, itemName, extName); imagePath.push(imgPath); // this line})...
如何訪問forEach中的外部變量?
函數(shù)式編程
2023-07-29 16:15:09