如何每隔一定时间刷新页面

时间:2019-04-30 05:07:35

标签: java spring hibernate

  
    

如何在特定时间间隔刷新页面或浏览器     Java的在我的应用程序中,我希望在给定的时间间隔内自动刷新页面,请您帮忙     克服这个问题。

  

2 个答案:

答案 0 :(得分:0)

您可以使用window.location.href=window.location.href;(javascript)重新加载页面。

如果要在指定时间后重新加载页面,可以使用setTimeout如下(将TIME替换为毫秒):

setTimeout(function(){
   window.location.href=window.location.href;
}, TIME);

答案 1 :(得分:0)

您可以在html页面中使用javascript

df <- read.csv("Superstore.csv", header = TRUE)
df2 <- df[,c(2,4,5,6,7)]
match(df2[2,],df2[1,],nomatch = 0)

还有其他刷新/重新加载页面的方法,以获取有关如何重新加载/刷新页面的更多详细信息, Refresh a page using JavaScript or HTML