Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@uiw/react-pagination
Advanced tools
当数据量较多时,使用分页可以快速进行数据切换,每次只加载一个页面。
import { Pagination, Divider } from 'uiw';
ReactDOM.render(
<div>
<Pagination current={2} pageSize={10} total={30} divider />
<Divider />
<Pagination current={2} pageSize={10} total={38} divider />
<Divider />
<Pagination current={1} pageSize={5} total={249} />
<Divider />
<Pagination current={1} pageSize={10} total={50} />
<Divider />
<Pagination current={1} pageSize={10} total={60} divider />
<Divider />
<Pagination current={1} pageSize={10} total={70} divider />
</div>,
_mount_
);
import { Pagination, Divider } from 'uiw';
ReactDOM.render(
<div>
<Pagination size="small" current={1} pageSize={5} total={249} />
<Divider />
<Pagination size="small" current={1} pageSize={10} total={50} />
</div>,
_mount_
);
目前有三种对齐方式 左边(left)
、中间(center)
、右边(right)
。
import { Pagination, Divider } from 'uiw';
ReactDOM.render(
<div>
<Pagination
current={5}
total={250}
onChange={(pageNumber) => {
console.log(`pageNumber:${pageNumber}`)
}}
/>
<Divider />
<Pagination
current={1}
alignment="center"
total={250}
onChange={(pageNumber) => {
console.log(`pageNumber:${pageNumber}`)
}}
/>
<Divider />
<Pagination
current={25}
alignment="right"
total={250}
onChange={(pageNumber) => {
console.log(`pageNumber:${pageNumber}`)
}}
/>
</div>,
_mount_
);
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
current | 当前页数,选中的页数 | Number | 1 |
total | 数据总数 | Number | 0 |
pageSize | 每页条数 | Number | 10 |
divider | 页码之间是否间隔 | Boolean | - |
size | 当为 small 时,是小尺寸分页 | Enum{small , default } | - |
alignment | 对齐 | Enum{left , center , right } | left |
onChange | 页码改变的回调,返回改变后的页码 | Function(current, total, pageSize) | - |
FAQs
Pagination component
The npm package @uiw/react-pagination receives a total of 101 weekly downloads. As such, @uiw/react-pagination popularity was classified as not popular.
We found that @uiw/react-pagination demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.