AudioWorklet error: DOMException: The user aborted a request
问题 I've successfully instantiated a simple AudioWorklet in React and wish to start a simple oscillator like in Google's example. In order to test run it, I am rendering a button whose onClick event calls the following: src/App.jsx: userGesture(){ //create a new AudioContext this.context = new AudioContext(); //Add our Processor module to the AudioWorklet this.context.audioWorklet.addModule('worklet/processor.js').then(() => { //Create an oscillator and run it through the processor let oscillator