2016-12-07 30 views
1

我初学者角2角2项目中使用NPM包,我们可以在角2个项目通过导入如下如何使用凉亭组成的角2项目

import { FormsModule } from '@angular/forms'; 

也使用它们,我们可以使用package.json文件导入并安装npm包。

但问题是我必须在我的angular 2项目中导入bower组件。 这是使用该bower componenthttps://www.predix-ui.com/?show=getting_started&type=local

我复制了凉亭的部件置入资产的文件夹在我的项目,并试图导入凉亭组件在我index.html如下

<head> 
    <meta charset="utf-8"> 
    <title>TestApp</title> 
    <base href="/"> 
    <link rel="import" href="./assets/px-spinner/px-spinner.html" /> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="icon" type="image/x-icon" href="favicon.ico"> 
</head> 
的链接,安装和指南

然后我尝试在我的app.component.html文件中使用它们,该文件位于我的src/app中,如下所示。

<h1> 
    {{title}} 
</h1> 
<px-spinner> 
    <px-inbox height="100vh" list-items='[{"id":"1","title":"GT Vibration","subtitle":"Block 2","severity":"important","date":"2016-10-05T01:29"}]'> 
    // define or bind to your details view here 
    </px-inbox> 

</px-spinner> 

但它会给出以下错误。

zone.js:388Unhandled Promise rejection: Template parse errors: 
'px-inbox' is not a known element: 
1. If 'px-inbox' is an Angular component, then verify that it is part of this module. 
2. If 'px-inbox' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message. (" 
</h1> 
<link rel="import" href="./assets/px-spinner/px-spinner.html" /> 
[ERROR ->]<px-inbox height="100vh" list-items='[{"id":"1","title":"GT Vibration","subtitle":"Block 2","severity"): [email protected]:0 ; Zone: <root> ; Task: Promise.then ; Value: Error: Template parse errors:(…) Error: Template parse errors: 
'px-inbox' is not a known element: 
1. If 'px-inbox' is an Angular component, then verify that it is part of this module. 
2. If 'px-inbox' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message. (" 
</h1> 
<link rel="import" href="./assets/px-spinner/px-spinner.html" /> 
[ERROR ->]<px-inbox height="100vh" list-items='[{"id":"1","title":"GT Vibration","subtitle":"Block 2","severity"): [email protected]:0 
    at TemplateParser.parse (http://127.0.0.1:4200/main.bundle.js:13787:19) 
    at RuntimeCompiler._compileTemplate (http://127.0.0.1:4200/main.bundle.js:32817:51) 
    at http://127.0.0.1:4200/main.bundle.js:32737:62 
    at Set.forEach (native) 
    at RuntimeCompiler._compileComponents (http://127.0.0.1:4200/main.bundle.js:32737:19) 
    at createResult (http://127.0.0.1:4200/main.bundle.js:32633:19) 
    at ZoneDelegate.invoke (http://127.0.0.1:4200/main.bundle.js:62681:26) 
    at Zone.run (http://127.0.0.1:4200/main.bundle.js:62563:43) 
    at http://127.0.0.1:4200/main.bundle.js:62951:57 
    at ZoneDelegate.invokeTask (http://127.0.0.1:4200/main.bundle.js:62714:35) 

现在我很困惑如何在我的项目中使用它们。请给我一个提示。

感谢

+0

可你的jsfiddle添加以下? –

回答

3

我猜你正在寻找的东西是这样的:

schemas: [CUSTOM_ELEMENTS_SCHEMA] 

@NgModule

Plunker Example

+0

非常感谢。它正在工作。 –

0

webcomponents-lite.js填充工具中是一个先决条件according to the readme of px-spinner

添加index.html中

<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>