angular2分页错误,没有导出成员'PaginationControlsCmp'

时间:2017-01-23 09:10:30

标签: angular pagination

我正在努力在API结果中添加分页功能。为此,我安装了“Ng2-pagination”,形成此网址“https://www.npmjs.com/package/ng2-paginate”, 但每当我点击npm start时,它都会给我以下错误。

app/blog.component.ts(6,23): error TS2305: Module '"/var/www/html/test/ng/node_modules/ng2-pagination/index"' has no exported member 'PaginationControlsCmp'.

app / blog.component.ts(13,3):错误TS2345:类型'{selector:string; templateUrl:string;提供者:( typeof PageService | typeof PaginationServic ...'不能分配给'Component'类型的参数。   对象文字只能指定已知属性,“组件”类型中不存在“指令”。

1 个答案:

答案 0 :(得分:0)

最新的Angular版本directivespipes已弃用@Component元数据。您必须提供directives元数据的所有pipesdeclarations@NgModule元数据。

根据ng2 pagination的{​​{3}},您必须在Ng2PaginationModule内导入AppModule

您可以查看simple-example以了解有关NgModule

的更多详细信息