gpt4 book ai didi

javascript - 如何在 React JS 中修改 Material UI prop-function 的默认值?

转载 作者:搜寻专家 更新时间:2023-11-01 04:12:50 25 4
gpt4 key购买 nike

我正在使用 React JS,我从 Material UI 导入了一个名为 ( https://material-ui.com/api/table-pagination/) 的组件,我想修改 labelDisplayedRows 的默认值,现在是这样的:

({ from, to, count }) => ${from}-${to} of ${count}

我想编辑输出的“of”,但这是一个函数,所以我不知道该怎么做。如果它是一个像 labelRowsPerPage 这样的简单节点,我会通过编写

来修改它
<TablePagination
labelRowsPerPage="text text text"
/>

我该怎么做?提前谢谢你

最佳答案

像这样:

<TablePagination labelDisplayedRows={({ from, to, count }) => `Displaying pages ${from}-${to} of total ${count} pages`}/>

关于javascript - 如何在 React JS 中修改 Material UI prop-function 的默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50563982/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com