在ios

时间:2016-01-20 06:36:39

标签: ios appcelerator titanium-mobile appcelerator-titanium

这是我用于将图像上传到服务器的HTTPClient代码。同样适用于3.5.0.GA SDK和4.1.0.GA SDK但不适用于新的SDK 5.1.1.GA和5.1.2.GA.

var filename = "sample.png";
//Pointer to the file to be uploaded.
var uploadingFile = Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory, filename);

Ti.API.info('uploadingFile ' + uploadingFile.exists());
//We are creating a new xhr instead of calling the existing one because we dont want timeout when uploading data.
var xhr = Titanium.Network.createHTTPClient({
    validatesSecureCertificate : false,
    enableKeepAlive : true,
    onload : function() {
        uploadingFile = null;
        Ti.API.info('Success '+tthis.responseText);         
    },
    onerror : function(data) {
        uploadingFile = null;
        Ti.API.info('this.status '+this.status);
    }
});

xhr.onsendstream = function(e) {
    var uploadTime = new Date();
    Ti.API.info('UPLOADING PROGRESS: ' + progress + ' ' + uploadTime.getHours() + ":" + uploadTime.getMinutes() + ":" + uploadTime.getSeconds());
};

xhr.open('POST', httpClient.getUserDomainInfo(config.URLs.imageupload, tenant));
xhr.send({
    file : uploadingFile.read(),
    claimId : claimID,
    filename : filename,
    description : ''
});

错误状态为500内部服务器错误。

SDK中的问题或我需要在代码中更改的任何内容。

请帮帮我。

2 个答案:

答案 0 :(得分:0)

以下代码演示了文件上传。根据您的代码进行修改。

f1 = Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory,<image name>);
i1 = f1.read();
xhr = Titanium.Network.createHTTPClient();
xhr.open('POST','<url to call>', false); // false makes it synchronous
xhr.onload = function() { handleAfterSentRouting(this.responseText);   };
xhr.send({media1: i1}); // media1 is the field the file information is in when you upload

感谢。

答案 1 :(得分:0)

我经历了相同的解决方案并在几周之后非常简单,您只需要在服务器上创建另一个Web服务页面,仅用于文件上传而不传递任何其他文本参数,在您的情况下编辑您的xhr.send参数只包括您的文件如下:

xhr.send({
    file : uploadingFile
}); 

因此,为另一个变量创建另一个与另一个Web服务器页面相关的xhr函数:

claimId : claimID,
filename : filename,
description : ''

有效;)