cordova-plugin-crosswalk-webview 我得到 navigator.getUserMedia is not a function
cordova-plugin-crosswalk-webview and I'm getting navigator.getUserMedia is not a function
我正在使用 cordova-plugin-crosswalk-webview
开发离子 WebRTC 应用程序,当 android 设备上的 运行 时,我发现 navigator.getUserMedia 不是一个函数 知道为什么吗?
navigator.getUserMedia({audio: true, video: true},
function(stream){
let vid = document.getElementById('my-video');
if(vid)
{
vid.setAttribute("src", URL.createObjectURL(stream));
} else {
alert("err geting div");
}
//this.localStream = stream;
}, function(){ alert("err");}
);
<video id="my-video" muted="true" autoplay="" src=""></video>
我通过重新安装 cordova-plugin-crosswalk-webview 插件解决了我的问题
我正在使用 cordova-plugin-crosswalk-webview
开发离子 WebRTC 应用程序,当 android 设备上的 运行 时,我发现 navigator.getUserMedia 不是一个函数 知道为什么吗?
navigator.getUserMedia({audio: true, video: true},
function(stream){
let vid = document.getElementById('my-video');
if(vid)
{
vid.setAttribute("src", URL.createObjectURL(stream));
} else {
alert("err geting div");
}
//this.localStream = stream;
}, function(){ alert("err");}
);
<video id="my-video" muted="true" autoplay="" src=""></video>
我通过重新安装 cordova-plugin-crosswalk-webview 插件解决了我的问题