前端刷新页面的五种方法(含原生js、vue和react)

原生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)
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享