当前位置: 代码迷 >> 综合 >> Promise.all 循环中调用接口
  详细解决方案

Promise.all 循环中调用接口

热度:102   发布时间:2023-11-19 17:11:26.0

开源商城

export default {
    methods: {
    getImageBase64(images) {
    // 生成一个数组let spreadList = []images.forEach(item => {
    const oneApi = imageBase64({
    url: item.pic}).then(res => {
    return res.data.code;})spreadList.push(oneApi)})Promise.all(spreadList).then(result => {
    // 业务结构})}}
}

开源地址

  相关解决方案