我想用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;

当前回答

如果你的前端工作在它自己的文件夹中,你可能需要在这个文件夹中安装@material-ui/core @material-ui/icons,而不是在后端文件夹中。

@material-UI/Core @material-UI/ICONS 中的 NPM

其他回答

在我的情况下,我试图在窗户上使用mdbreact。虽然它安装了,但我得到了上述错误。我不得不重新安装,一切正常。我曾经在antd图书馆遇到过一次

使用依赖项而不安装依赖项时也会发生。 发生在我身上,当我从“@material-ui/icons/”调用MenuIcon时,在项目中丢失了。

我在一个自定义node_module上工作时遇到了同样的问题,并在cra(创建react应用程序)中使用npm link进行测试。

我发现在我的自定义节点包中,我必须添加一个peerDependencies

"peerDependencies": {
    "@types/react": "^16.8.6 || ^17.0.0",
    "react": "^17.0.0",
    "react-dom": "^17.0.0"
  },

我把它加到我的包里。json,然后重新构建我的自定义包。 然后在CRA,我吹走node_modules, re npm install, re -do npm link <package>,然后启动项目。

固定的一切!

当我在类组件中使用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>;
}

我遇到这个问题,我的错误原因是我开发项目A,我把另一个项目B链接到A,但是A有React包,B也有React包,它们是同一个版本(16.13)。 但是这引起了问题,我设置文件的意思是webpack.config.js,像这样:

alias: {
  'react': path.join(path.resolve(__dirname), '../node_modules/react'),
},

将B React包解析为A React包,我猜原因是一个项目不能有两个或两个以上的React包,即使它们是相同的版本。但我无法证实我的猜测。