我正在学习这本 O'Reilly 书中的一些网络音频教程:http: //chimera.labs.oreilly.com/books/1234000001552/ch02.html#s02_2
以下代码应该创建一个系统来暂停音频文件并恢复播放。
// Assume context is a web audio context, buffer is a pre-loaded audio buffer.
var startOffset = 0;
var startTime = 0;
function pause() {
source.stop();
// Measure how much time passed since the last pause.
startOffset += context.currentTime - startTime;
}
function play() {
startTime = context.currentTime;
var source = context.createBufferSource();
// Connect graph
source.buffer = this.buffer;
source.loop = true;
source.connect(context.destination);
// Start playback, but make sure we stay in bound of the buffer.
source.start(0, startOffset % buffer.duration);
}
但是,运行该pause()
函数会导致以下错误:
Uncaught ReferenceError: source is not defined
现在从我的角度来看,这是因为source
已使用var
关键字定义,使其作用于play()
函数,因此无法访问pause()
. 删除var
关键字确实可以解决问题。有人可以向我保证我的推理是正确的吗?这只是一个错字,还是有一些我不理解的基本原理?(我已经检查了这本书的勘误表,那里没有提到它。)