reactjs-pagination

0.0.8 • Public • Published

reactjs-pagination

一个react的本地分页组件

version MIT License

reactjs-pagination是一个react的本地分页组件,支持页码、跳转、和迷你模式。文档

基础使用

npm install --save reactjs-pagination
import React, { Component } from 'react';
import { Pagination }from 'reactjs-pagination';
 
class Test extends Component {
    state = {
        totalNumber: 326,
        pageSize: 10,
        currentPage: 31
    };
    constructor(props) {
        super(props);
        setTimeout(() => {
            // this.setState({
            //  currentPage: 15
            // });
            this.setState({
                totalNumber: 125
            });
        }, 3000);
    }
    handleChange = (idx) => {
        console.log('页码改变 => ', idx);
    }
    render() {
        const { totalNumber, pageSize, currentPage } = this.state;
 
        return (
            <div>
                <Pagination
                    totalNumber={totalNumber}
                    pageSize={pageSize}
                    currentPage={currentPage}
                    middlePage={5}
                    onChange={this.handleChange}
                    showPages
                    showGo
                />
            </div>
        )
    }
}

Readme

Keywords

Package Sidebar

Install

npm i reactjs-pagination

Weekly Downloads

4

Version

0.0.8

License

MIT

Last publish

Collaborators

  • tudou