BroadcastChannel: close() 方法
注意:此功能在Web Workers中可用。
close()
方法是 BroadcastChannel
接口的方法,它终止与底层通道的连接,允许对象被垃圾回收。这是必须执行的一个步骤,因为浏览器没有其他方法知道此通道不再需要。
语法
js
close()
示例
js
// Connect to a channel
const bc = new BroadcastChannel("test_channel");
// More operations (like postMessage, …)
// When done, disconnect from the channel
bc.close();
规范
规范 |
---|
HTML 标准 # dom-broadcastchannel-close-dev |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。
另请参阅
BroadcastChannel
,它所属的接口。