我正在使用 angular 7.0.1 和 angular material 7.0.2,我想添加字体真棒 5.4.2 图标,我正在尝试按照 fontawesome web 上的步骤操作,但我无法获得字体真棒图标字体。
第一的:
npm install --save-dev @fortawesome/fontawesome-free
然后在styles.scss 中添加:
@import '~@fortawesome/fontawesome-free/scss/fontawesome.scss';
并在 _variables.scss 添加:
$fa-font-path: '~@fortawesome/fontawesome-free/webfonts';
现在在 app.component.ts 添加:
import { MatIconRegistry } from "@angular/material";
[...]
constructor(
public matIconRegistry: MatIconRegistry,
) {
matIconRegistry.registerFontClassAlias ('fas'); // tried with 'fas' and with 'fa'
}
最后我应该用以下方法打印字体真棒图标:
<mat-icon mat-list-icon fontIcon="fas github"></mat-icon> // tryed also with 'fas-github', 'fasGithub', 'github', 'fa-github', 'fa github' and 'faGithub'
但是字体真棒图标字体永远不会被打印出来。我错过了一些重要而明显的东西,但现在我没有看到它。