答案 0 :(得分:6)
正确答案,您将在文档中看到。 参见属性“ rowsPerPageOptions”。文档显示:
自定义每页选择字段的行选项。如果少于两个选项可用,则不会显示选择字段。
因此,您必须指定rowsPerPageOptions = {[]}就是这样。 Doc。页面:https://material-ui.com/api/table-pagination/
抱歉,我的语言。
答案 1 :(得分:1)
只需将labelRowsPerPage
标记中的属性TablePagination
分配给一个空字符串。
<TablePagination
labelRowsPerPage=''
{...otherProps}
/>
答案 2 :(得分:0)
只需将您的材料属性(分页为false)添加到Material Table的JSX调用中
<MaterialTable
//your other props
options={{
paging: false
}}
/>