我使用fonfaceobserver预加载字体。
我对字体有这个承诺:
Promise.all([
marydaleBold.load(),
interstateReg.load()
]).then(function() {
console.log('Fonts are available');
});
但我还想检查一个变量&的特定值。不仅仅是加载字体。如何通过Promise实现这一目标?
答案 0 :(得分:0)
Promise.all([
marydaleBold.load(),
interstateReg.load()
]).then(([marydaleBold, interstateReg]) => {
console.log('Fonts are available');
//And you can check for specific values in marydaleBold and intestateReg
});
这称为解构分配,有关详细信息,请访问here。