如何使用其他输入表单创建android cordova图像上传

时间:2019-06-27 04:38:41

标签: javascript php mysql cordova html-framework-7

我正在使用Cordovaframework7来建立一个新的应用程序,我想创建一个包含photo/image-from-camera的表单,并输入表单作为说明和name-file。 / p>

我已经成功调用相机功能从Android手机拍照,但是我需要从手机发送图像临时位置以输入值并提交表格。

因此,当我单击“提交”按钮时,我应该从哪里开始提交包含图像数据,名称和描述的表单。

1 个答案:

答案 0 :(得分:1)

尝试

navigator.camera.getPicture(cameraSuccess, cameraError);

// success
function cameraSuccess(file_uri) {
  window.resolveLocalFileSystemURL(file_uri,
    function(fileEntry) {
        // fileEntry will have file name and file native URL
    });
}

// error
function cameraError(imageData) {
  // on error
}
  

确保将相机destinationType设置为FILE_URI