如何在Angular中使用字体加载器,例如WebFontLoader或FontFaceObserver?我不确定需要导入什么/在哪里以及如何在组件中使用它。 最佳答案 做:npm install webfontloader然后在您的组件中可以这样编写:app.component.ts:import * as WebFont from 'webfontloader'; // ... ngOnInit(){ WebFont.load({/* your config...*/}) }