我想用React在一个表中显示一些记录,但我得到了这个错误:

无效的钩子调用。类的主体内部只能调用钩子 功能组件。这可能发生在以下情况之一 原因: React和渲染器的版本可能不匹配(比如React DOM) 你可能违反了胡克斯的规矩 你可能在同一个应用程序中有多个React副本,请参阅有关如何调试和调试的提示 解决这个问题。

import React, {
  Component
} from 'react';
import {
  makeStyles
} from '@material-ui/core/styles';
import Table from '@material-ui/core/Table';
import TableBody from '@material-ui/core/TableBody';
import TableCell from '@material-ui/core/TableCell';
import TableHead from '@material-ui/core/TableHead';
import TableRow from '@material-ui/core/TableRow';
import Paper from '@material-ui/core/Paper';

const useStyles = makeStyles(theme => ({
  root: {
    width: '100%',
    marginTop: theme.spacing(3),
    overflowX: 'auto',
  },
  table: {
    minWidth: 650,
  },
}));

class allowance extends Component {
  constructor() {
    super();
    this.state = {
      allowances: [],
    };

  }

  componentWillMount() {
    fetch('http://127.0.0.1:8000/allowances')
      .then(data => {

        return data.json();

      }).then(data => {

        this.setState({
          allowances: data
        });

        console.log("allowance state", this.state.allowances);
      })

  }



  render() {
    const classes = useStyles();
    return ( <
      Paper className = {
        classes.root
      } >
      <
      Table className = {
        classes.table
      } >
      <
      TableHead >
      <
      TableRow >
      <
      TableCell > Allow ID < /TableCell> <
      TableCell align = "right" > Description < /TableCell> <
      TableCell align = "right" > Allow Amount < /TableCell> <
      TableCell align = "right" > AllowType < /TableCell>

      <
      /TableRow> <
      /TableHead> <
      TableBody > {
        this.state.allowances.map(row => ( <
          TableRow key = {
            row.id
          } >
          <
          TableCell component = "th"
          scope = "row" > {
            row.AllowID
          } <
          /TableCell> <
          TableCell align = "right" > {
            row.AllowDesc
          } < /TableCell> <
          TableCell align = "right" > {
            row.AllowAmt
          } < /TableCell> <
          TableCell align = "right" > {
            row.AllowType
          } < /TableCell>                     <
          /TableRow>
        ))
      } <
      /TableBody> <
      /Table> <
      /Paper>
    );
  }

}

export default allowance;

当前回答

昨天,我缩短了代码(只是添加了<Provider store={store}>),仍然得到了这个无效的钩子调用问题。这让我突然意识到我犯了什么错误:我没有在那个文件夹中安装react-redux软件。

我已经在另一个项目文件夹中安装了这个软件,所以我没有意识到这个项目也需要它。安装之后,错误就消失了。

其他回答

你可以通过调用一个箭头函数来返回它的React来使用“export default”。通过将MaterialUI类对象道具传递给组件,这些道具将在Component render()中使用。

class AllowanceClass extends Component{
    ...
    render() {
        const classes = this.props.classes;
        ...
    }
}

export default () => {
    const classes = useStyles();
    return (
        <AllowanceClass classes={classes} />
    )
}

您可以将类组件转换为钩子,但Material v4有一个withStyles HOC。 https://material-ui.com/styles/basics/#higher-order-component-api 使用这个HOC,您可以保持代码不变。

对我来说,这个问题是由webpack设置解决引起的。Symlinks (https://webpack.js.org/configuration/resolve/#resolvesymlinks),设置为false:

  resolve: {
    symlinks: false,

因此,从另一个包到React的符号链接无法解析,并导致无效钩子调用错误。

将它设置为true或简单地省略它(显然它默认为true)解决了问题:

  resolve: {
    symlinks: true,

React linter假定每个方法都以使用钩子开始,并且钩子不能在类中工作。通过将const usstyles重命名为任何不以use开头的东西,比如const myStyles,就可以了。

更新:

makestyle是钩子api,你不能在类中使用它。你可以使用样式组件API。在这里看到的

当我在类组件中使用useLocation钩子时,我也有同样的问题

错误:

import React from "react";
import { useLocation } from "react-router-dom";

class ShowTheLocation extends React.Component {
  const location = useLocation();
  render() {
    return <div>You are now at {location.pathname}</div>;
  }
}

解决方案:我已经将类组件转换为功能组件,然后问题解决

import React from "react";
import { useLocation } from "react-router-dom";

const ShowTheLocation = () => {
  const location = useLocation();

  return <div>You are now at {location.pathname}</div>;
}