原生JS
1、window.history.go(0)方法
window.history.go(0)
2、location.reload()方法
location.reload()
3、location.href=location.href方法
location.href=location.href
vue
4、vue-router方法
const router = useRouter()
router.go(0)
react
5、react-router方法
import { createBrowserHistory, createHashHistory } from 'history';
const history = createBrowserHistory() // history模式
const history = createHashHistory() // hash模式
history.go(0)
本文转载自: https://blog.csdn.net/joeyjanela/article/details/128568413
版权归原作者 Sjure` 所有, 如有侵权,请联系我们删除。
版权归原作者 Sjure` 所有, 如有侵权,请联系我们删除。