i5ting / imove

INACTIVE: Move your mouse, generate code from flow chart
https://www.yuque.com/imove/docs/hvu0md
MIT License
3.75k stars 343 forks source link

feat: add depency in hook #66

Closed cbbfcd closed 3 years ago

cbbfcd commented 3 years ago

as the title 🚀

SmallStoneSK commented 3 years ago

@cbbfcd

const onClickAwayRef = useRef(onClickAway);
onClickAwayRef.current = onClickAway;

这个依赖不用加,onClickAwayRef.current 是对象引用,onClickAway 发生变化的时候,useEffect 回调中的 onClickAwayRef.current 自然就跟着变了。