这是我的代码:
const { admin: { fetch: fetchAdmin } } = useDispatch();
const [page, setPage] = useState(0);
const [count, setCount] = useState(15);
const [tick, setTick] = useState(0);
useEffect(() => {
function handleGetData() {
fetchAdmin({ page: page + 1, count }); // the warning is here
}
handleGetData();
}, [page, count, tick]);
return (
<div />
)
PhpStorm显示警告Method expression is not of Function type
。
我尝试将handleGetData
函数移到useEffect
之外,但仍显示相同的错误。
该代码运行正常,但在编辑器中显示了这些警告。
该如何解决?
谢谢。
======
似乎是编辑器问题