如何在 Angular 2 中将 bower_component 与 typeScript 一起使用

How to use bower_component with typeScript in Angular 2

我在 typeScript 中使用 Bower 组件时遇到问题。是否可以使用 bower_components。我在 index.html 中导入 bower_component,但它不会导入其他 .html。能否请您解决这个问题。

此导入行在 index.html。

 <link rel="import" href="bower_components/...html" />

谢谢。

看看你的错误,如果它声明要添加 CUSTOM_ELEMENTS_SCHEMA 那么你可以将它添加到你的 AppModule

schemas: [CUSTOM_ELEMENTS_SCHEMA]

@NgModule({
    declarations: [ HeaderComponent ],
    bootstrap:    [ HeaderComponent ],
    imports: [ RouterModule, CommonModule, FormsModule ],
    schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class AppModule { }