UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

16 lines (14 loc) 493 B
import { useEffect, useRef } from 'react'; import { useReachBottom as useTaroReachBottom } from '@tarojs/taro'; export var useReachBottom = function useReachBottom(callback, // 小程序下该项在页面配置中的 onReachBottomDistance 设置 _offset) { var ref = useRef(); // 立即触发一次回调 useEffect(function () { callback(); }, []); useTaroReachBottom(callback); // 小程序下始终相对于窗口,ref 无实际作用,仅起兼容作用 return ref; };