无法读取 MUI v5 中未定义的属性“main”
我按照教程为我的表格添加页面分页,现在我的浏览器中出现了这个错误:
Uncaught TypeError: Cannot read property 'main' of undefined
at ButtonRoot.ownerState.ownerState (Button.js:80)
at transformedStyleArg (createStyled.js:189)
at handleInterpolation (emotion-serialize.browser.esm.js:137)
at serializeStyles (emotion-serialize.browser.esm.js:262)
at emotion-styled-base.browser.esm.js:131
at emotion-element-cbed451f.browser.esm.js:36
at renderWithHooks (react-dom.development.js:14985)
at updateForwardRef (react-dom.development.js:17044)
at beginWork (react-dom.development.js:19098)
at HTMLUnknownElement.callCallback (react-dom.development.js:3945)
这完全阻止我显示我的页面。 我知道从 mui v4 到 mui v5 有很大的样式变化,我设法通过使用简单的 CSS“避开”它们。所以我完全不明白我的错误。特别是因为错误似乎位于“ButtonRoot”中? :
backgroundColor: alpha(theme.palette[ownerState.color].main, theme.palette.action.hoverOpacity),
因此,这里是我使用“主题”的代码(我通常使用与教程相同的代码):
import { useTheme } from '@mui/material';
import LastPageOutlinedIcon from "@mui/icons-material/LastPageOutlined";
import FirstPageIcon from "@mui/icons-material/FirstPage";
import KeyboardArrowLeftIcon from "@mui/icons-material/KeyboardArrowLeft";
import KeyboardArrowRightIcon from "@mui/icons-material/KeyboardArrowRight";
function TablePaginationActions(props) {
const theme = useTheme();
const { count, page, rowsPerPage, onPageChange } = props;
const handleFirstPageButtonClick = (event) => {
onPageChange(event, 0);
};
const handleBackButtonClick = (event) => {
onPageChange(event, page - 1);
};
const handleNextButtonClick = (event) => {
onPageChange(event, page + 1);
};
const handleLastPageButtonClick = (event) => {
onPageChange(event, Math.max(0, Math.ceil(count / rowsPerPage) - 1));
};
return (
<div style={{ flexShrink: 0, marginLeft: 2.5 }}>
<IconButton
onClick={handleFirstPageButtonClick}
disabled={page === 0}
aria-label="Première page"
>
{theme.direction === "rtl" ? (
<LastPageOutlinedIcon />
) : (
<FirstPageIcon />
)}
</IconButton>
<IconButton
onClick={handleBackButtonClick}
disabled={page === 0}
aria-label="Page précédente"
>
{theme.direction === "rtl" ? (
<KeyboardArrowRightIcon />
) : (
<KeyboardArrowLeftIcon />
)}
</IconButton>
<IconButton
onClick={handleNextButtonClick}
disabled={page >= Math.ceil(count / rowsPerPage) - 1}
aria-label="Page suivante"
>
{theme.direction === "rtl" ? (
<KeyboardArrowLeftIcon />
) : (
<KeyboardArrowRightIcon />
)}
</IconButton>
<IconButton
onClick={handleLastPageButtonClick}
disabled={page >= Math.ceil(count / rowsPerPage) - 1}
aria-label="Dernière page"
>
{theme.direction === "rtl" ? (
<FirstPageIcon />
) : (
<LastPageOutlinedIcon />
)}
</IconButton>
</div>
);
}
export default function Importation() {
// Pagination
const [page, setPage] = useState(0);
const [rowsPerPage, setRowsPerPage] = useState(10);
TablePaginationActions.propTypes = {
count: PropTypes.number.isRequired,
onPageChange: PropTypes.func.isRequired,
page: PropTypes.number.isRequired,
rowsPerPage: PropTypes.number.isRequired,
};
// Permet de changer de page
const handleChangePage = (event, newPage) => {
setPage(newPage);
};
return (
<Grid
container
style={{ width: "100%", minHeight: "90vh" }}
{...getRootProps()}
>
<TablePagination
component="div"
rowsPerPageOptions={[]}
count={fichiers.length}
rowsPerPage={rowsPerPage}
page={page}
onPageChange={handleChangePage}
ActionsComponent={TablePaginationActions}
/>
</Grid>
);
}
注意:请注意整个页面(+1000 行),但我认为我的问题来自这种“主题”样式。
最后,教程的代码,我以此为基础: https://codesandbox.io/s/ccw8hm?file=/demo.js
希望这能解决您的问题,就像我的问题一样,但我认为这与将自定义颜色传递给按钮或图标按钮组件有关,如此处所述。返回的错误与您描述的相同。
https://github.com/mui/material-ui/issues/33054
本质上,问题是某些组件不再支持 v4 中提供的“默认”颜色。在 v5 中,他们表示他们希望与材料规范保持一致,不再包含“默认”灰色,因为它不是材料设计指南的一部分。这给我带来了很大的麻烦,因为我在制作适当的深色/浅色主题时广泛使用了这些默认/灰色按钮和其他组件。
您需要检查代码并确保没有
<Button color="default"/>
实例,如果有,请将颜色更改为文档支持的颜色,例如
primary
或
secondary
。有些组件仍然支持“默认”,例如
AppBar
、
Fab
和
IconButton
,但不支持
Button
。
作为快速修复,您可以更新/创建自定义 MUI 主题并添加
default
颜色,但最终看起来可能会很奇怪,因为它没有涵盖 v4 拥有的所有变体(
这里有一个关于完全复制颜色的线程
)。
import { createTheme } from '@mui/material/styles';
import { grey } from "@mui/material/colors";
export const lightTheme = createTheme({
palette: {
mode: 'light',
default: {
main: grey[300],
dark: grey[400]
},
}
});
查看此链接
您无法通过在代码中声明来自定义 Material UI 中的主题,您必须通过从 MUI 导入
styled
来为您使用的每个组件制作样式组件,在代码中使用
sx={{}
而不是
style={{}
以获得更好的可靠性。