其他分享
首页 > 其他分享> > [uniapp] 爬坑 ios webview中使用麦克风 getUserMedia

[uniapp] 爬坑 ios webview中使用麦克风 getUserMedia

作者:互联网

webview中无法访问ios的麦克风,显示找不到对象mediaDevices

但是页面进行一次跳转后就可以获取到mediaDevices了。

可以在mounted中

if(navigator.userAgent.match(/iPad|iPhone/) && !window.location.href.match(/\&index=$/)) {
    window.location.replace(window.location.href + '&index=');
}

 

 

标签:uniapp,mediaDevices,index,ios,window,href,location,getUserMedia,match
来源: https://www.cnblogs.com/xuxux/p/16438056.html