useReFocus
这个 Hook 自 v1.4.0 版本起可用。
这是一个 React 钩子(Hook),用于在重新获得焦点时运行一个函数。
演示
源码This component will show a toast when the user refocuses on the window.
用法
请查看 API。
源码
API
useReFocus(fn, options): void
函数 Fn
当重新获得焦点时将被调用的函数。
选项 Options
interface UseReFocusOptions extends UseThrottledFnOptions {
/**
* 注册焦点事件监听器。
*/
registerReFocus?: (callback: AnyFunc) => void
}
查看 useThrottledFn 以了解更多信息。