我有一个index.php文件,我正在显示板球得分:
notifyItemChanged(int position)
我希望通过代码每30秒自动刷新一次,而页面中没有任何刷新按钮。
有人可以帮忙吗?提前致谢
答案 0 :(得分:0)
您可以使用Javascript重新加载页面来执行此类操作
<script type="text/javascript">
setTimeout(function() {
document.location = "http://YOUR_APP_URL";
}, 30000);
//other code as usual
</script>
如果您想让自己的应用更好,可以使用AJAX
答案 1 :(得分:0)
你可以使用:
<script type="text/javascript">
setTimeout(function() {
location.reload();
}, 30000
);
</script>
或:
<meta http-equiv="refresh" content="30">
在<head>
标记
正如Hari Lamichhane所说如果你想让你的应用更好,你可以使用AJAX