我有一个从浏览器打开相机的代码。如何改进此代码以便我可以将文件保存在本地目录中。
document.getElementById('takephoto').onclick = function(){
console.log(navigator.camera);
navigator.camera.getPicture(function(imageUri){
var lastphoto = document.getElementById("thephoto");
alert("nicephoto");
lastphoto.innerHTML = "<img src='" + imageUri + "'style='width:100%;'/>"
}, null, null);
}
使用此代码,我可以访问相机