CodeIgniter,为所有客户端刷新视图

CodeIgniter, refreshing view for all clients

这是我的问题。 我的项目正在使用 CodeIgniter。

我正在开发一款游戏,在此阶段,玩家必须选择一首音乐。 他得到了一份 表格 来发送 URL。其他播放器必须等待他,我想在播放器发送音乐后为每个人刷新视图

我首先做了一个每秒刷新页面的 JS 函数,问题是如果玩家在表单中写东西,它也会为他刷新。

是否可以使用 CodeIgniter 做类似的事情?

<script>
setInterval("auto_refresh_test_refresh()",1000);
function auto_refresh_test_refresh(){ 
        $( "#test_refresh" ).load(window.location.href + " #test_refresh" );
}
</script>

这是我的 JS 函数有问题。

感谢您的帮助!!

也许您应该尝试 Websockets,它们是与服务器的开放持久连接,并允许将文件(或消息)流式传输到客户端。