React 中无效的 Hook 调用错误:综合指南
当尝试使用 React 在表中显示数据时,您可能会遇到以下错误“无效的钩子调用。钩子只能在函数组件的主体内部调用。”出现此错误的原因有多种,了解如何解决它对于 React 开发至关重要。
错误原因
Material-UI 示例
考虑以下代码示例:
<code class="javascript">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;</code>
解决方案
在这个例子中,出现错误是因为组件被定义为类组件。 React hooks 在以后的 React 版本中引入,只能在功能组件中使用。要解决此问题:
进一步帮助
有关修复“无效挂钩调用”错误的其他指导:
以上是为什么我的 React 应用程序中会出现'无效的钩子调用”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!