当我使用以下代码时,我收到一条Rendered fewer hooks than expected. This may be caused by an accidental early return statement.
消息:
{headRows
// Filter table columns based on user selected input
.filter(item => displayedColumns.includes(item.id))
.map(row => (
<TableCell
key={row.id}
align={row.numeric ? "right" : "left"}
padding={row.disablePadding ? "none" : "default"}
sortDirection={orderBy === row.id ? order : false}
>
<TableSortLabel
active={orderBy === row.id}
direction={order}
onClick={createSortHandler(row.id)}
>
{useTranslation(row.label)}
</TableSortLabel>
</TableCell>
))}
我的翻译函数如下所示:
import { useSelector } from "react-redux";
export const useTranslations = () =>
useSelector(state => state.translations.data, []);
如果我将一个字符串传入其中,翻译函数将按预期工作。但是,如果我将{useTranslation(row.label)}
替换为{row.label}
,则不再收到错误消息。在我看来,我不在这里调用循环、条件或嵌套函数中的钩子,还是我错了?
您有一个呈现单元格列表的组件。但是这里的每个单元格都由传递给map
的回调呈现。所以,事实上,这里既有一个循环函数,又有一个嵌套函数。
我建议你将回调提取到一个新组件并渲染它。在这种情况下,每个单元格都将是一个新组件,允许您自由使用钩子。
const MyTableCell = props => {
const {row} = props;
const title = useTranslation(row.label);
return (
<TableCell>
<TableSortLabel>
{title}
</TableSortLabel>
</TableCell>
)
}
// and then
{headRows
// Filter table columns based on user selected input
.filter(item => displayedColumns.includes(item.id))
.map(row => (
<MyTableCell row={row} key={row.id} />
))}
不要在循环、条件或嵌套函数中调用 Hook。
-- https://reactjs.org/docs/hooks-rules.html#only-call-hooks-at-the-top-level