gpt4 book ai didi

javascript - System.import promise 链接

转载 作者:搜寻专家 更新时间:2023-11-01 04:51:42 25 4
gpt4 key购买 nike

我偶然发现了一些片段 similar to this one :

  System.import('core-js').then( function() {
System.import('polymer/mutationobservers').then( function() {
System.import('aurelia-bootstrapper');
})
});

它是回调 hell 的替代品 - promise hell 吗?顺序 System.import 是否可以扁平化以使用 promise 链,或者可能存在问题?

最佳答案

我建议改为链接,例如

System.import('core-js')
.then(function(){
return System.import('polymer/mutationobservers');
})
.then(function(){
return System.import('aurelia-bootstrapper');
});

当您从 then返回一个 promise 时,它​​会在执行下一个 then 之前等待它解决,所以在这种情况下mutationobservers 必须在 aurelia-bootstrapper 之前加载。

关于javascript - System.import promise 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32026851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com