最近做APP项目,需要拍照获取照片,上传给服务器,我使用的h5+ 里面的方法
var camera = plus.camera.getCamera(1); //获取摄像头管理对象
camera.captureImage(function(capturedFile) {
console.log("capturedFile:" + capturedFile);
}, function(e) {
console.log("拍照错误:" + e.message);
}, {
index: 1,
popover: {
top: '0px',
left: '0px'
}
});
现在可以调取摄像头拍照,返回路径 _doc/15132648561.jpg
然后怎么把图片路径用ajax上传到服务器,
或者哪位大神有别的调取摄像头和上传方法也可以。谢谢了。
相关分类