gpt4 book ai didi

cordova - Phonegap Cordova 3.0.0 navigator.camera 未定义

转载 作者:行者123 更新时间:2023-12-04 10:39:32 25 4
gpt4 key购买 nike

我第一次尝试使用 Cordova 原生插件。我从相机和文档中提供的示例代码开始。然而,这失败了,navigator.camera未定义。

我已经包含了下面的代码。

<div data-role="page" id="CameraPage">
<script type="text/javascript" charset="utf-8">

var pictureSource; // picture source
var destinationType; // sets the format of returned value

// Wait for device API libraries to load
//
document.addEventListener("deviceready",onDeviceReady,false);

// device APIs are available
//
function onDeviceReady() {
pictureSource=navigator.camera.PictureSourceType;
destinationType=navigator.camera.DestinationType;
}

// Called when a photo is successfully retrieved
//
function onPhotoDataSuccess(imageData) {
alert("Photo Data Success");
// Uncomment to view the base64-encoded image data
// console.log(imageData);

// Get image handle
//
var smallImage = document.getElementById('smallImage');

// Unhide image elements
//
smallImage.style.display = 'block';

// Show the captured photo
// The inline CSS rules are used to resize the image
//
smallImage.src = "data:image/jpeg;base64," + imageData;
}

// A button will call this function
//
function capturePhoto() {
alert("function is called");
if(_.isUndefined(navigator.camera)){
alert("Camera is not defined");
}else{
alert("WTF?!");
}
// Take picture using device camera and retrieve image as base64-encoded string
navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
destinationType: destinationType.DATA_URL });
}

// Called if something bad happens.
//
function onFail(message) {
alert('Failed because: ' + message);
}

</script>

<button onclick="capturePhoto();">Capture Photo</button> <br>
<img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
<img style="display:none;" id="largeImage" src="" />

我根据 CLI 说明安装了相机插件
cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git

我还添加了cordova.js 文件。

<script type="text/javascript" charset="utf-8" src="js/cordova-js/lib/cordova.js"></script>

最佳答案

你在哪里测试你的代码?

我不知道你是否还需要anwser。但我认为它可以帮助某人。我运行你的代码,它 100% 工作。
我已经在 Android 模拟器中使用模拟相机进行了测试。我认为您忘记了使用权限。

<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />

我在这里做了一个例子 https://github.com/paulorbpacheco/CameraTest-Cordova.git

我希望这可以帮助你...

问候

关于cordova - Phonegap Cordova 3.0.0 navigator.camera 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18690388/

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