Vue强制刷新页面
1、this.$router.go(0);2、location.reload(false);3、location.reload();关于上述几种方式的区别:this.$router.go(0)时,相当于重新跳回当前页面location.reload(true)时,相当于强制刷新location.reload(false)时,刷新,但可以引用缓存的数据。这两种都可以刷新当前页面的,缺...
·
1、this.$router.go(0);
2、location.reload(false);
3、location.reload();
关于上述几种方式的区别:
this.$router.go(0)时,相当于重新跳回当前页面
location.reload(true)时,相当于强制刷新
location.reload(false)时,刷新,但可以引用缓存的数据。
这两种都可以刷新当前页面的,缺点就是相当于按ctrl+F5 强制刷新那种,整个页面重新加载,会出现一个瞬间的空白页面
4、余下两种方式参考这里
更多推荐
已为社区贡献4条内容
所有评论(0)