我想在ionic v1中的WebView中访问相机。 我尝试了以下代码: var options = { 位置:“否”, clearcache:“是”, 工具栏:“否” };
$ionicPlatform.ready(function() {
$cordovaInAppBrowser.open('https://turncameraon.com/', '_blank', options)
.then(function(event) {
// success
//https://gonative.io/success
})
.catch(function(event) {
// error
});
});
但是,我没有任何插件可以通过Webview代码访问getUserMedia权限。 如何使用webview访问getUserMedia权限?