useEffect(() => {
 fetchBusinesses()
}, []) // eslint-disable-line react-hooks/exhaustive-deps
  • 方法四:如果要在整个项目中删除警告,可以将其添加到eslint配置中:
  • "plugins": ["react-hooks"], "rules": { "react-hooks/exhaustive-deps": 0
  •