2017-08-30 14:02:49 +08:00
|
|
|
---
|
2020-03-30 10:50:29 +08:00
|
|
|
order: 11
|
2017-08-30 14:02:49 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 上一步和下一步
|
|
|
|
en-US: Prev and next
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
修改上一步和下一步为文字链接。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use text link for prev and next button.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
|
|
|
import type { PaginationProps } from 'antd';
|
2017-08-30 14:02:49 +08:00
|
|
|
import { Pagination } from 'antd';
|
2022-05-21 22:14:15 +08:00
|
|
|
import React from 'react';
|
2017-08-30 14:02:49 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const itemRender: PaginationProps['itemRender'] = (_, type, originalElement) => {
|
2017-08-30 14:02:49 +08:00
|
|
|
if (type === 'prev') {
|
|
|
|
return <a>Previous</a>;
|
2019-05-07 14:57:32 +08:00
|
|
|
}
|
|
|
|
if (type === 'next') {
|
2017-08-30 14:02:49 +08:00
|
|
|
return <a>Next</a>;
|
|
|
|
}
|
|
|
|
return originalElement;
|
2022-05-19 09:46:26 +08:00
|
|
|
};
|
2017-08-30 14:02:49 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => <Pagination total={500} itemRender={itemRender} />;
|
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|