0

我正在尝试使用 XMLHttpRequests 和 AudioContext 加载音频,我的代码如下所示:

class AudioExample
    audioContext: null
    init: ->
        AudioContext = window.AudioContext || window.webkitAudioContext
        @audioContext = new AudioContext!
        # r = xmlhttprequest magic
        r.onload = (e) ->
            rr = e.target #XMLHttpRequest{response: ArrayBuffer, song: Object, si: Object}
            @audioContext.decodeAudioData rr.response, (buffer) ->
                # ...

错误是TypeError: Cannot read property 'decodeAudioData' of undefined.

当我对 audioContext 进行 console.log 时,我得到了一个有效的 audioContext 对象,那么为什么它在代码执行时未定义?

4

1 回答 1

1

这是绑定函数的问题;console.log @您可以通过放置一个inside来诊断它r.load = (e) -> ...

解决方案是使用以下方式绑定r.onload处理程序~>

r.onload = (e) ~> ...

检查Bound Functions的 LiveScript 文档。

于 2015-09-07T16:03:47.497 回答