我将此代码放入我的主视图文件中:
<html>
<head>
<script src="/app/static/js/jquery.js" type="text/javascript">
<script type="text/javascript">
jQuery(document).ready(function() {
window.setTimeout(function() {
var url = '{{=URL('monitor.load')}}';
jQuery('#monitor').load(url);
}, 10000);
});
</script>
</head>
<body>
<div id="monitor"></div>
</body>
</html>
为了在 #monitor div 标签中显示来自 monitor.load 文件的数据:
{{=data}}
但是,它只在 10 秒后放置一次数据,然后它不会像我想要的那样每 10 秒更新一次数据......
如果数据在控制器中更改,或者在 monitor.load 文件中更改,则没有任何反应。 ..