我從Angular Quickstart seed開始Angular項目。 我一直在創造我自己的部件,現在我想用下面的命令將Angular2嚮導包添加到項目
$ npm install angular2-wizard --save
添加Angular2-wizard NPM包
我已經安裝了包,因爲它在其安裝部分規定,然後試圖按照所有建議的步驟使用組件。我可以看到一個以我的項目的node_modules
文件夾下的插件命名的文件夾。
當我運行使用npm start
我這個404錯誤
Error: (SystemJS) XHR error (404 Not Found) loading http://localhost:3000/angular2-wizard
該項目有一個工作演示(angular2-wizard-demo),但似乎並沒有使用SystemJS項目。我也試過的this answer建議添加行
'angular2-wizard': 'npm:angular2-wizard/dist/index.js'
地圖配置下,但現在當包加載其成分我得到這個404錯誤
Error loading http://localhost:3000/node_modules/angular2-wizard/dist/src/wizard.component as "./src/wizard.component" from http://localhost:3000/node_modules/angular2-wizard/dist/index.js Stacktrace: (SystemJS) XHR error (404 Not Found) loading http://localhost:3000/node_modules/angular2-wizard/dist/src/wizard.component
這是app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { FormWizardModule } from 'angular2-wizard';
import { PizzaService } from './services/pizza.service'
@NgModule({
imports: [
BrowserModule,
FormsModule,
FormWizardModule
],
declarations: [ AppComponent ],
providers: [ PizzaService ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
有關如何將此包添加到我的項目的任何提示?
你可以發佈你的'src/app/app.module.ts' – bhantol
我已經編輯過文件內容 – maureyes