私は画像をキャプチャできるコードを書いた。今私はアプリで画像を表示したい。 idの "capturedImage"を持つdivコンテナを作成したいだけです。コルドバ - キャプチャ画像を表示
これは、写真を撮る私のコードであり、かつ正常に動作します:
var pictureSource; // picture source
var destinationType; // sets the format of returned value
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
}
function captureImage() {
navigator.device.capture.captureImage(captureSuccess1, captureError1, { limit: 1 });
}
function captureSuccess1(mediaFiles) {
for (var i = 0; i < mediaFiles.length; i++) {
var path = mediaFiles[i].fullPath;
alert(path);
document.getElementById('capturedPicture').src = mediaFiles[i].fullPath;
}
}
function captureError1(error) {
var msg = 'An error occurred during capture: ' + error.code;
navigator.notification.alert(msg, null, 'Uh oh!');
alert(msg);
}
私は次のコードで画像を表示することができると思ったが、それは不可能です。
document.getElementById('capturedPicture').src = mediaFiles[i].fullPath;
何が間違っているかも考えていますか?
は、コンソールにエラーを発見していた画像要素のsrcを設定するには? –
パス変数は何を表していますか? –