如何在分页MUI中的数字页中添加逗号?

问题描述 投票:0回答:2

我有 MUI 的分页 enter image description here

我想在数字页中添加逗号,例如:

39,233

material-ui pagination
2个回答
0
投票

我解决了使用

usePagination
构建自定义分页的问题,更多信息请参见此处 https://mui.com/material-ui/react-pagination/#usepagination


0
投票

这是我如何使用逗号格式化计数...

<TablePagination
    labelDisplayedRows={({ from, to, count }) => `${from}-${to} of ${count.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,")}`}      
/>        
© www.soinside.com 2019 - 2024. All rights reserved.