ngx-pagination模块出现404错误:每当我尝试启动Angular 2应用程序时,
/ngx-pagination
存在于节点模块和package.json中。
有人可以协助吗?我正在使用quickstart-master。
您的帮助将不胜感激。
App.module参考...
import { NgxPaginationModule } from "ngx-pagination";
@NgModule({
imports: [ BrowserModule, HttpModule, FormsModule, routing, NgxPaginationModule],
declarations: [ ClientComponent,HeaderComponent],
bootstrap: [ HeaderComponent ]
})
export class AppModule { }
答案 0 :(得分:1)
请确保您的systemjs.config.js
文件已更新,可以在运行时加载模块。
只需添加:
'ngx-pagination': 'npm:ngx-pagination/dist/ngx-pagination.umd.js'
进入该文件的map
对象。