React 递归动态 import 组件使用 Promise 的问题 ?

  • 现在的问题是子组件并没有加载,但是也没报错,有点绕不出来了
function build(page_list: any[]){
    return  page_list.map((v: any) => {
        return import(`./control/${v.component}`).then(module => {
            let child: any[] = []
            if( v.children ){
                let promises = build(v.children)
                Promise.all(promises).then(aaa => child = aaa)
            }
            const ppp = child.length == 0 ? { title_str: "c" } :{ title_str: "c", children: child }
            return <module.default key={v.type} {...ppp}></module.default>
        });

    })
}
阅读 1.8k
1 个回答

image.png

你这 Promise.all 也没等待执行完,下面 child.length 肯定始终都是 0。

async function build(page_list: any[]){
    return await Promise.all(page_list.map(async (v: any) => {
        const module = await import(`./control/${v.component}`);
        let child: any[] = [];
        if (v.children){
            let promises = build(v.children);
            child = await Promise.all(promises); // 等待
        }
        const ppp = child.length == 0 ? { title_str: "c" } :{ title_str: "c", children: child };
        return <module.default key={v.type} {...ppp}></module.default>;
    }));
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题