当我尝试让 mediaDevices 处于边缘时,我遇到了这个奇怪的错误。
navigator.mediaDevices.getUserMedia({
audio: true
}).then(function (stream) {
this.gotStream(stream);
}.bind(this)).catch(function (e) {
console.log(e);
alert('Vi kunne ikke få fat i din microfon. Hvis du kom til at svare nej til popupen ryd venligst din browsers cache og prøv igen!');
});
这发生在catch
块中。谁能帮我吗?