请求时异步的,你同步打印的时候当然是个空数组。改成这样试试:
try {
let DirBuckets=[]
Promise.all(taskPhotoJsonPath.map((item: any) => {
return axios
.get(`file://${item}`)
.then((res: any) => {
console.log(res);
try {
const { point, defect, packet } = res;
if (packet) {
// resolve(packet[0])
DirBuckets.push(packet[0])
}
} catch (e) {
console.error(e);
Modal.error({ content: "本地文件损坏,请重新同步服务器数据" });
}
})
.catch(() => {
});
})).then(() => {
console.log(DirBuckets, '当前读取的数据')
})
}
catch (error) {
console.log(error);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…