ng2-pagination 分页

前端之家收集整理的这篇文章主要介绍了ng2-pagination 分页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、安装

npm install ng2-pagination --save

2、模块中配置(app.module.ts)

...
import {Ng2PaginationModule} from 'ng2-pagination';
@NgModule({
    imports: [
        Ng2PaginationModule
    ]
})
...

3、页面中配置使用

<!--显示分页内容-->
<!--
collection是组件中定义的数组或者数组对象,提供的数据
itemsPerPage: 每页显示的条目数
currentPage: 当前页
-->
<ul>
  <li *ngFor="let item of collection | paginate: { itemsPerPage: 10,currentPage: p }">{{item}}</li>
</ul>
<!--单机分页事件-->
<pagination-controls (pageChange)="p = $event"></pagination-controls>

4、配置中文,因为默认上一页下一页等都是英文,所以需要配置

node_modules/ng2-pagination/dist/pagination-controls.component.js
原文链接:https://www.f2er.com/angularjs/148243.html

猜你在找的Angularjs相关文章