“Chrome Back Button Kliknij zdarzenie React” Kod odpowiedzi

Jeśli z powrotem zareaguj

import { useHistory } from 'react-router-dom'


const [ locationKeys, setLocationKeys ] = useState([])
const history = useHistory()

useEffect(() => {
  return history.listen(location => {
    if (history.action === 'PUSH') {
      setLocationKeys([ location.key ])
    }

    if (history.action === 'POP') {
      if (locationKeys[1] === location.key) {
        setLocationKeys(([ _, ...keys ]) => keys)

        // Handle forward event

      } else {
        setLocationKeys((keys) => [ location.key, ...keys ])

        // Handle back event

      }
    }
  })
}, [ locationKeys, ])
Wide-eyed Weevil

Chrome Back Button Kliknij zdarzenie React

const {history} = useRouter();
  useEffect(() => {
    return () => {
      // && history.location.pathname === "any specific path")
      if (history.action === "POP") {
        history.replace(history.location.pathname, /* the new state */);
      }
    };
  }, [history])
Tense Thrush

Odpowiedzi podobne do “Chrome Back Button Kliknij zdarzenie React”

Pytania podobne do “Chrome Back Button Kliknij zdarzenie React”

Więcej pokrewnych odpowiedzi na “Chrome Back Button Kliknij zdarzenie React” w JavaScript

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

Przeglądaj inne języki kodu