这篇文章需要技术复核。如何帮忙。
这篇文章需要文法复核。如何帮忙。
AudioContext
的close()
方法可以关闭audio context,同时释放占用的所有系统资源。
关闭的context不能用来创建新节点,但可以解码音频数据,创建buffer等等
该函数不会自动释放所有用AudioContext创建的对象
,除非其他引用也都已经解除了。但是,它会强制释放所有可能阻止其它AudioContexts被创建或使用
的系统音频资源。挂起audio context中音频时间的进度,并停止对音频数据的处理。所有的AudioContext创建/阻塞资源都被释放后,返回的Promise
才会被释放。如果在一个OfflineAudioContext
上调用该方法,则会抛出INVALID_STATE_ERR
异常。
语法
var audioCtx = new AudioContext(); audioCtx.close().then(function() { ... });
返回值
A Promise
that resolves with void.(Promise
释放后是void?)
例子
下面这段代码是AudioContext states demo (直接运行)中的,点击停止按钮调用close()
。promise释放后,回到初始状态。
stopBtn.onclick = function() { audioCtx.close().then(function() { startBtn.removeAttribute('disabled'); susresBtn.setAttribute('disabled','disabled'); stopBtn.setAttribute('disabled','disabled'); }); }
规范
Specification | Status | Comment |
---|---|---|
Web Audio API close() |
Working Draft |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 43.0 | 40.0 (40.0) | 未实现 | ? | ? |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | 未实现 | 未实现 | ? | ? | ? | ? | ? | 未实现 |