页面5秒钟刷新一次,怎么实现
JS实现决策报表定时刷新-https://help.fanruan.com/finereport10.0/doc-view-1457.html
JS实现普通报表定时刷新-https://help.fanruan.com/finereport10.0/doc-view-1202.html
决策报表内报表块刷新插件- FineReport帮助文档 - 全面的报表使用教程和学习资料 (fanruan.com)
加载结束事件
setInterval (function() { //SetInterval:每100毫秒执行一次,setTimeout:100毫秒后执行一次
contentPane.parameterCommit();
}, 5000);
setInterval('location.reload();',50000)