在我的 Ionic 2 应用程序中,我正在使用 cordova-plugin-camera 拍照,在那里我通过 FILE_URL(本地设备的图像位置)检索图片,效果很好。

这给了我用相机拍照时这样的 URL:file:///storage/emulated/0/Android/....../1234.jpg
从图库中选择图像时像这样:content://com.android.providers.media.documents/document/image%232312
现在我正在尝试使用 cordova-plugin-file-transfer 上传这张图片。

我的上传功能如下:

upload(){
    let options: FileUploadOptions = {
        fileKey: 'file',
        fileName: 'my_image.jpg',
        headers: {'X-CSRF-Token': localStorage.getItem('u:token')}
    }
    alert(this.imageSrc);
    this.fileTransfer.upload(this.imageSrc, encodeURI(this.API_URL), options, true)
        .then(data => {
            alert("d:"+JSON.stringify(data));
        }, err => {
            alert("E:"+JSON.stringify(err));
        });
}

但是我收到一个包含以下内容的错误对象
{
  "code" : "null",
  "source" : "null",
  "target" : "null",
  "http_status" : "null",
  "body" : "null",
  "exception" : "null"
}

注意:没有额外的错误被抛出

最佳答案

编辑:

我过去使用过这个插件的地方我通常会传入一个:

file:///Path/To/File/

或类似的东西:
cdvfile://localhost/persistent/path/to/file.txt

您还可以像这样传入数据 URI:

我看到您正在使用相机插件,您是否尝试过设置相机选项以返回数据 URL 并发送它?
navigator.camera.getPicture(onSuccess, onFail,
{
    destinationType: Camera.DestinationType.DATA_URL;
});

原始

尝试构建您的选项,如下所示:
var options = new FileUploadOptions();

options.fileKey =  'file',
options.fileName = 'my_image.jpg',
options.headers = {'X-CSRF-Token': localStorage.getItem('u:token')}

然后尝试像这样上传:
 var ft = new FileTransfer();

ft.upload('file_url', 'endpoint_url', success_callback, fail_callback, options);

关于cordova - FileTransfer 返回所有属性的错误 `null`,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43470478/

10-12 02:25