React Hook useMemo has a missing dependency: 't'. Either include it or remove the dependency array. react-hooks/exhaustive-deps
时间: 2024-03-11 18:46:09 浏览: 212
react移动端项目构建,react@18.2.0+react-vant+vite+axios+redux+sass
这是一个 React Hook `useMemo` 的警告信息,它告诉你在依赖数组中缺少一个变量 `t`,要么将其包含在依赖数组中,要么将依赖数组移除。`useMemo` 可以用来避免在渲染时重复计算一些值,这个 Hook 的第一个参数是一个函数,第二个参数是一个依赖数组。当依赖数组中的任意一个变量发生变化时,`useMemo` 所传入的函数会重新执行,否则它会返回缓存的值。因此,当你使用 `useMemo` 时,需要确保依赖数组中包含所有需要缓存的变量,否则可能会导致缓存失效或者无法正确更新。
阅读全文