- 现在的问题是子组件并没有加载,但是也没报错,有点绕不出来了
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>
});
})
}
你这 Promise.all 也没等待执行完,下面 child.length 肯定始终都是 0。