马老师SpringCloud全栈快速上手
function Timer() {
const intervalRef = useRef();
useEffect(() => {
intervalRef.current = setinterval(() => {
// ...
});
return () => {
clearInterval(intervalRef.current);
}
});}