2

我正在尝试使用相机捕获图像并将其上传到我的 AJAX 端点。我已确认此端点可以接受该文件(我在桌面上创建了一个测试 HTML 文件,该文件发送了一个包含图像的表单)。我正在使用 Cordova (phonegap) 1.7.0,并试图让 fileTransfer() 工作。这是我遵循的文档的链接:

http://docs.phonegap.com/en/1.0.0/phonegap_file_file.md.html#FileTransfer

成功回调触发,但在端点上找不到 $_FILES 数据。

然后我找到了这篇文章:

http://zacvineyard.com/blog/2011/03/25/upload-a-file-to-a-remote-server-with-phonegap/

建议使用options.chunkedMode = false. 现在上传需要一个半岁,最终失败,错误代码为 3,我相信是FileError.ABORT_ERR.

我错过了什么吗?

我的代码来自下面的应用程序:

     navigator.camera.getPicture(function(imageURI){           
        console.log('take success! uploading...');
        console.log(imageURI);
        var options = new FileUploadOptions();
        options.fileKey = 'file';
        options.fileName = 'spot_image.jpeg';
        options.mimeType = 'image/jpeg';
        var params = new Object();
        params.spot_id = 1788;
        params.param2 = 'something else';
        options.params = params;        
        options.chunkedMode = false;
        var ft = new FileTransfer();
        ft.upload(imageURI,serverURL + '/ajax.php?fname=appuploadspotimage',function(r){
            console.log('upload success!');
            console.log(r.responseCode);
            console.log(r.response);
            console.log(r.bytesSent);
        },function(error){
            console.log('upload error')
            console.log(error.code);
        },options,true);
        console.log('after upload');



    },function(message){
       console.log('fail!');
       console.log(message);
    },{ 
        quality: 50,
        destinationType: navigator.camera.DestinationType.DATA_URL,
        sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
    });

serverURL被定义为我的 AJAX 端点的域,该端点已在 cordova.xml 中列入白名单。

我在 SO 中看到了许多关于此的问题,对于是否应该使用 chunkedMode 有不同的看法。有人也有这个问题吗?

我正在运行 ICS 的三星 Galaxy S 上尝试这个。

愿帮我解决这个问题的人神秘地继承了一家啤酒厂。

4

2 回答 2

5

您不能使用从 FileTransfer 上传方法中的相机成功回调获得的 imageUri,您必须首先将 uri 解析为这样的文件名:

navigator.camera.getPicture(function(imageURI){

      window.resolveLocalFileSystemURI(imageUri, function(fileEntry) {
            fileEntry.file(function(fileObj) {

                var fileName = fileObj.fullPath;

                //now use the fileName in your method
                //ft.upload(fileName ,serverURL + '/ajax.php?fname=appuploadspotimage'...);

            });
        });
});
于 2013-01-08T17:22:50.027 回答
0

有点困惑之后,在我看来你可以直接使用图像uri....

在这里查看我的答案:(这适用于我在 android 上):

android phonegap 相机和图像上传

于 2013-07-25T09:27:08.150 回答