useReConnect

这个 Hook 自 v1.4.0 版本起可用。

一个 React Hook,用于在网络重新连接时运行一个函数。

演示

源码
This component will show a toast when the user reconnects to the internet.

用法

请查看 API。

源码

点击下方链接跳转 GitHub 查看源代码。

API

useReConnect(fn, options)

函数 Fn

网络重新连接时将被调用的函数。

选项 Options

export interface UseReConnectOptions { /** * 注册重新连接事件监听器。 */ registerReConnect?: (callback: AnyFunc) => void }