每当我尝试使用makeStyles()
具有生命周期方法的组件时,都会收到以下错误:
无效的钩子调用。钩子只能在函数组件的主体内部调用。这可能是由于以下原因之一造成的:
- 你可能有不匹配的 React 版本和渲染器(例如 React DOM)
- 你可能会违反 Hooks 规则
- 您可能在同一个应用程序中拥有多个 React 副本
下面是产生此错误的代码的小示例。其他示例也将类分配给子项。我在 MUI 的文档中找不到任何显示其他使用方法makeStyles
和能够使用生命周期方法的内容。
import React, { Component } from 'react';
import { Redirect } from 'react-router-dom';
import { Container, makeStyles } from '@material-ui/core';
import LogoButtonCard from '../molecules/Cards/LogoButtonCard';
const useStyles = makeStyles(theme => ({
root: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
},
}));
const classes = useStyles();
class Welcome extends Component {
render() {
if (this.props.auth.isAuthenticated()) {
return <Redirect to="/" />;
}
return (
<Container maxWidth={false} className={classes.root}>
<LogoButtonCard
buttonText="Enter"
headerText="Welcome to PlatformX"
buttonAction={this.props.auth.login}
/>
</Container>
);
}
}
export default Welcome;