1 Star 0 Fork 0

animalcoder/Vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
animalcoder 提交于 2020-03-23 09:59 +08:00 . Vue6
<!DOCTYPE html>
<html>
<head>
<style>
.col {
float:left;
width:50%;
left:50%;
}
</style>
</head>
<body>
<div class=col>
<h2>EventSource</h2>
<ul id=es-messages>
</ul>
</div>
<div class=col>
<h2>EventSourcePolyfill</h2>
<ul id=es-polyfill-messages>
</ul>
</div>
<script src=/eventsource-polyfill.js></script>
<script>
function subscribe(es, ul) {
es.addEventListener('server-time', function (e) {
var li = document.createElement("LI");
li.appendChild(document.createTextNode(e.data));
ul.appendChild(li);
});
}
subscribe(new EventSource('/sse'), document.getElementById('es-messages'));
subscribe(new EventSourcePolyfill('/sse'), document.getElementById('es-polyfill-messages'));
</script>
</body>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/animalcoder/Vue.git
git@gitee.com:animalcoder/Vue.git
animalcoder
Vue
Vue
master

搜索帮助