我是Angular2的新手,我想在我的应用程序中加入分页,但是在使用ng2-pagination时我遇到了这个错误。
我使用了以下基本示例: http://michaelbromley.github.io/ng2-pagination/
所以我在我的组件上有这个:
import {ChangeDetectionStrategy, Component, EventEmitter} from 'angular2/core';
import {PaginatePipe, PaginationControlsCmp, PaginationService} from 'ng2-pagination';
@Component({
selector: 'consultaVehicle',
templateUrl: 'app/components/home/vehicles/consultaVehicle.html',
providers: [VehicleService, MarcaModelsService],
directives: [PaginationControlsCmp],
pipes: [PaginatePipe],
changeDetection: ChangeDetectionStrategy.OnPush
})
我已经在index.html中导入了这个包: 的 /dist/ng2-pagination-bundle.js"
版本:
"ng2-pagination": "^0.3.4",
"angular2": "2.0.0-beta.0",
谢谢!
答案 0 :(得分:0)
您可能需要添加'PaginationService'作为提供者 例如
providers: [PaginationService , VehicleService, MarcaModelsService],