如果用户刷新页面,有没有办法在 React 中将用户重定向到主页?
我可以在按下刷新按钮时触发警报,但我无法实际重定向到关于页面(在这种情况下(。有什么想法吗?
useEffect(() => {
getWeather();
return () => {
if (window.performance.navigation.type == 1) {
alert("Redirect")
return <Redirect to="/About"></Redirect>
}
};
}, []);
useEffect(() => {
getWeather();
return () => {
if (window.performance.navigation.type == 1) {
window.location.href = "/About"
}
};
}, []);