0


前端刷新页面的五种方法(含原生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)
标签: 前端 vue.js react.js

本文转载自: https://blog.csdn.net/joeyjanela/article/details/128568413
版权归原作者 Sjure` 所有, 如有侵权,请联系我们删除。

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

还没有评论