请问我想在决策报表添加一个刷新事件,怎样写能实现每天凌晨两点刷新呢?
location.reload()
https://blog.csdn.net/weixin_40426459/article/details/84836569
JS实现定时刷新报表-https://help.finereport.com/doc-view-1202.html
参考这个加js的位置
js代码可以修改为:
setInterval(function(){
var startTime = new Date();
var a1 = startTime.getHours();
var a2 = startTime.getMinutes();
var a3 = startTime.getSeconds();
if(a1==9 && a2==00 && a3== 00){
self.location.reload();
}
},1000)
(每一秒去调用前面的function(),判断a1,a2,a3是否是预定的时间-9:00:00,是的话则刷新)
如有帮助望采纳~
body初始化事件:setTimeout("_g().parameterCommit();",5000);单位毫秒
参考
https://help.fanruan.com/finereport/doc-view-1457.html