React Hook useCallback has missing dependencies: 'record.Technician.FirstName', 'record.Technician.LastName', and 'refresh'. Either include them or remove the dependency array. If 'refresh' changes too often, find the parent component that defines it and wrap that definition in useCallback. react-hooks/exhaustive-deps
时间: 2024-03-11 22:46:20 浏览: 248
这是一个 React Hook useCallback 的警告信息,意思是在 useCallback 的依赖数组中缺少了 'record.Technician.FirstName', 'record.Technician.LastName', 和 'refresh',要么加上这些依赖,要么将依赖数组移除。如果 'refresh' 经常变化,可以找到定义它的父组件,并使用 useCallback 包裹它的定义。这个警告是为了避免在渲染期间重复定义函数,从而导致不必要的性能开销。
阅读全文