无法绑定到' icon'因为它不是'fa-icon'的一个已知属性。

时间:2018-04-28 11:14:41

标签: angular ngx-share

我在我的项目中使用MPICH docs。但是,我似乎无法使用这些图标。如果我尝试使用这样的图标:

<button mat-fab shareButton="telegram" [style.backgroundColor]="share.prop.telegram.color">
  <fa-icon [icon]="share.prop.telegram.icon" size="lg"></fa-icon>
</button>

我得到的是以下错误:

Uncaught Error: Template parse errors:
Can't bind to 'icon' since it isn't a known property of 'fa-icon'.
1. If 'fa-icon' is an Angular component and it has 'icon' input, then verify that it is part of this module.
2. If 'fa-icon' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("on mat-fab shareButton="telegram" [style.backgroundColor]="share.prop.telegram.color">
    <fa-icon [ERROR ->][icon]="share.prop.telegram.icon" size="lg"></fa-icon>
  </button>

"): ng:///AppModule/GroupComponent.html@49:13
'fa-icon' is not a known element:
1. If 'fa-icon' is an Angular component, then verify that it is part of this module.
2. If 'fa-icon' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("

  <button mat-fab shareButton="telegram" [style.backgroundColor]="share.prop.telegram.color">
    [ERROR ->]<fa-icon [icon]="share.prop.telegram.icon" size="lg"></fa-icon>
  </button>

"): ng:///AppModule/GroupComponent.html@49:4
    at syntaxError (compiler.js:486)
    at TemplateParser.parse (compiler.js:24674)
    at JitCompiler._parseTemplate (compiler.js:34629)
    at JitCompiler._compileTemplate (compiler.js:34604)
    at eval (compiler.js:34505)
    at Set.forEach (<anonymous>)
    at JitCompiler._compileComponents (compiler.js:34505)
    at eval (compiler.js:34375)
    at Object.then (compiler.js:475)
    at JitCompiler._compileModuleAndComponents (compiler.js:34374)

如何解决此问题?

我将ShareModule添加到导入列表中:

@NgModule({
  imports: [
    //..
    ShareModule.forRoot()
  ]
})

我的组件还根据需要注入ShareButtons对象:

export class GroupComponent {    
  constructor(public share: ShareButtons) {
  }
}

2 个答案:

答案 0 :(得分:5)

修改 您还可以导入已导出 ShareButtonModule的{​​{1}}。

原始回答

假设您已经安装了字体真棒npm包,则需要将FontAwesomeModule添加到模块的导入

FontAwesomeModule

参见此处的示例

https://www.npmjs.com/package/@fortawesome/angular-fontawesome

答案 1 :(得分:0)

您需要在使用这些共享按钮的模块中导入ShareButtonsModule

import { ShareButtonsModule } from '@ngx-share/buttons';

@NgModule({
  imports: [
    ShareButtonsModule.forRoot()
  ]
})