我想在我的React TS项目中使用交集观察器。
(https://www.npmjs.com/package/react-intersection-observer)
我一度无法设置根:
const root = useRef(null);
const { ref, inView, entry } = useInView({
root: root,
threshold: 0,
onChange: () => console.log(inView)
});
字符串
此时root选项给出此错误:
Type 'MutableRefObject<null>' is missing the following properties from type 'Element': attributes, classList, className, clientHeight, and 164 more.ts(2740)
型
我可以用ref设置根吗?
1条答案
按热度按时间busg9geu1#
字符串
current
属性用于访问或修改可变值或对象。