我是一个phonegap新手。我正在尝试使用 phonegap 官方教程从 android 中的 sdcard 读取和图像文件。问题是图像没有显示,而是在其位置出现问号。
我的代码:
var pictureSource;
var destinationType;
document.addEventListener("deviceready",onDeviceReady,false);
function onDeviceReady(){
document.getElementById("test").innerHTML="onready about to request";
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, onFail);}
function onFail(message) {
alert('Failed because: ' + message);
}
function gotFS(fileSystem) {
fileSystem.root.getFile("1.jpg", null, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.file(gotFile, fail);
}
function gotFile(file){
readDataUrl(file);
}
function readDataUrl(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as data URL");
console.log(evt.target.result);
};
document.getElementById("smallImage").style.display='block';
document.getElementById("smallImage").src = reader.readAsDataURL(file);
}
function fail(evt) {
console.log(evt.target.error.code);
}
</script>
编辑:使用 API 16 和 min-sdk8 “smallImage” 是一个标签,它可以与 onphotodatasuccess 一起正常工作。所以,相机在这里不是问题。与相机功能相关的一切都很好。从 sdcard 读取在赋值语句中存在问题。
document.getElementById("smallImage").src = reader.readAsDataURL(file); 如果我添加这个,我会得到字符串和未知的铬错误 -6,否则我会看到通常的图像转换字符串。谢谢