原生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)