EventSource.close()

EventSource 的方法 close() 用于关闭当前的连接,如果调用了此方法,则会将EventSource.readyState (en-US)这个属性值设置为 2 (closed)

备注: 如果连接已经被关闭,此方法不会做任何事情

语法

eventSource.close();

参数

None.

返回值

Void.

例子

var button = document.querySelector('button');
var evtSource = new EventSource('sse.php');

button.onclick = function() {
  console.log('Connection closed');
  evtSource.close();
}

备注: 你可以在 Github 上查看这整个例子: Simple SSE demo using PHP.

规范

Specification
HTML Standard
# dom-eventsource-close-dev

浏览器兼容性

BCD tables only load in the browser

相关链接