gpt4 book ai didi

cordova - Cordova 浏览器平台摄像头不工作

转载 作者:行者123 更新时间:2023-12-01 09:10:56 28 4
gpt4 key购买 nike

我有一个启用了平台浏览器的 Cordova 应用程序。我想在 Chrome 中使用摄像头,但调用摄像头根本没有任何反馈。它在我的 Android 设备上就像一个魅力。

我通过这个命令启动:cordova运行浏览器

Chrome 按预期打开,并显示一个完美的控制台日志,告诉我 Cordova 为相机设置了代理:

 The key "target-densitydpi" is not supported.
cordova.js:851 adding proxy for Camera
index.js:47 Received Event: deviceready

我正在使用 https://github.com/apache/cordova-plugin-camera/blob/master/doc/index.md 中的示例.

当我在以下示例中单击我的链接时,除了日志行“capture”之外没有任何反应。没有错误,什么都没有。它甚至不要求我允许访问我的相机。我确实在 HTML5 页面上测试了我的摄像头,Chrome 可以正常访问它。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
<body>
<div class="app">

<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
<img id="myImage"/>
<a href="javascript: capture()">Camera example</a>
</div>
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>

<script>
function capture()
{
console.log("capture")
navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
destinationType: Camera.DestinationType.DATA_URL
});
}

function onSuccess(imageData) {
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + imageData;
}

function onFail(message) {
alert('Failed because: ' + message);
}
</script>
</body>
</html>

index.js文件是Cordova生成的。

cordova -version => 4.0.0

cordova 插件 => org.apache.cordova.camera 0.3.4 “相机”

如果有人能指导我解决这个问题,我会非常感激。

提前致谢。

/马丁

最佳答案

  • 这是 Chrome 对本地文件网络的限制,您无法访问摄像头/麦克风。解决方案是使用本地 http 服务器,然后从 localhost://而不是 file://

  • 运行
  • 无论如何,最好的解决方案是使用标志启动 chrome:--allow-access-from-files

或者你可以尝试 mozilla,它的工作原理:)

问候!

关于cordova - Cordova 浏览器平台摄像头不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27749398/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com