如何重新询问浏览器麦克风的权限?

问题描述 投票:0回答:1

如何在浏览器中重新请求麦克风的权限?

我的代码在这里

function askPermission() {
var constraints = { audio: true, video: false }

navigator.mediaDevices.getUserMedia(constraints).then(function (stream) {

    audioContext = new AudioContext();
    console.log(audioContext);


}).catch(function (err) {
    window.location.reload();
});

}

javascript browser mediarecorder
1个回答
0
投票

您不能。

用户需要进入浏览器设置并手动允许它。

更多信息:ask for geolocation permission again if it was denied

© www.soinside.com 2019 - 2024. All rights reserved.