我正在努力在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'类型的参数。 对象文字只能指定已知属性,“组件”类型中不存在“指令”。
答案 0 :(得分:0)
最新的Angular版本directives
和pipes
已弃用@Component
元数据。您必须提供directives
元数据的所有pipes
和declarations
内@NgModule
元数据。
根据ng2 pagination
的{{3}},您必须在Ng2PaginationModule
内导入AppModule
。
您可以查看simple-example以了解有关NgModule
。