原生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方法文章来源:https://www.toymoban.com/news/detail-600871.html
const router = useRouter()
router.go(0)
react
5、react-router方法文章来源地址https://www.toymoban.com/news/detail-600871.html
import { createBrowserHistory, createHashHistory } from 'history';
const history = createBrowserHistory() // history模式
const history = createHashHistory() // hash模式
history.go(0)
到了这里,关于前端刷新页面的五种方法(含原生js、vue和react)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!