generated from bing/readnotes
26 lines
716 B
HTML
26 lines
716 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>SSE test</title>
|
|
<script type="text/javascript">
|
|
window.addEventListener("DOMContentLoaded", function () {
|
|
var evsrc = new EventSource("http://192.168.1.13:18000/api/notify?client=aaaa&user=2");
|
|
evsrc.onmessage = function (ev) {
|
|
document.getElementById("log")
|
|
.insertAdjacentHTML("beforeend", "<li>" + ev.data + "</li>");
|
|
}
|
|
evsrc.onerror = function (ev) {
|
|
console.log("readyState = " + ev.currentTarget.readyState);
|
|
}
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>SSE test</h1>
|
|
<div>
|
|
<ul id="log">
|
|
</ul>
|
|
<img data=""/>
|
|
</div>
|
|
</body>
|
|
</html> |