“ClearInterval w użyciu” Kod odpowiedzi

ClearInterval w użyciu

let intervalID;
useEffect(() => {
    if (isRunning) {
      intervalID = setInterval(() => {
        dispatch({ type: "tic-toc" });
      }, 1000);
    }
      return () => clearInterval(intervalID);
  }, [isRunning]);
Salo Hopeless

Użyj EFEFFECT ClearInterval Ładowanie

const Loading = () => {
  const [loadingStatus, setLoadingStatus] = useState(".");

  useEffect(() => {
    const intervalId = setInterval(() => {
      setLoadingStatus(ls => ls + ".");
    }, 1000);

    return () => clearInterval(intervalId);
  }, []);

  return <p>{`Loading ${loadingStatus}`}</p>;
};
Confused Chimpanzee

Odpowiedzi podobne do “ClearInterval w użyciu”

Pytania podobne do “ClearInterval w użyciu”

Więcej pokrewnych odpowiedzi na “ClearInterval w użyciu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu