1

我正在尝试将 .mp4 文件上传到某个服务器。我使用的是钛提供的HTTP客户端。当我上传文件时,HTTP 客户端在文件中添加了一些标头,因此文件已损坏且无法播放。当我下载上传的文件并在记事本中打开它时,我可以看到添加到文件中的标题。我应该怎么做才能不将这些标头添加到文件中?非常感谢!

    // CODE
var uploadFile = Titanium.Filesystem.getFile(dir, _previewUrl);
var fileUploadUrl = 'Some Url for the server to upload';
var headers = { 'Content-Type' : 'multipart/form-data' };
var content = { 'file' : uploadFile };
var xhr = Titanium.Network.createHTTPClient();
for(var key in _headers) {
        xhr.setRequestHeader(key, _headers[key]);
    }
xhr.onerror = function(e)
{
Ti.UI.createAlertDialog({title:'Error', message:e.error}).show();
Ti.API.info('IN ERROR ' + e.error);
};
xhr.setTimeout(20000);
xhr.onload = function(e)
{
Ti.UI.createAlertDialog({title:'Success', message:'status code ' + this.status}).show();
Ti.API.info('IN ONLOAD ' + this.status + ' readyState ' + this.readyState);
};
xhr.onsendstream = function(e)
{
ind.value = e.progress ;
Ti.API.info('ONSENDSTREAM - PROGRESS: ' + e.progress);
};
// open the client
xhr.open('POST',fileUploadUrl);
// send the data
xhr.send(content);
// END
4

3 回答 3

1

打电话后尝试设置标题xhr.open

// open the client
xhr.open('POST',fileUploadUrl);

for(var key in _headers) {
    xhr.setRequestHeader(key, _headers[key]);
}
于 2012-06-16T15:41:40.173 回答
0

尝试不发送原始 blob 本身。改为发送 base64 编码字符串。

var uploadFile = Titanium.Filesystem.getFile(dir, _previewUrl);     
var base64File = Ti.Utils.base64encode(uploadFile.read()).toString();

并尝试将标题更改为

xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(base64File);

这将解决你的问题。

于 2015-04-24T11:23:35.490 回答
0

不要添加 { 'Content-Type' : 'multipart/form-data' }; 标题。这样,您应该正确获取文件,而无需任何标题,例如边界和文件名等。我可以成功发送图像,3gpp 文件但是,当我发送视频文件时,我的服务器 PHP 代码 $_FILES 将是空数组。甚至 $_FILES["files"]["error"] 也没有价值。应该有一些其他的技巧来发送视频文件。(钛 SDK 3.1.1 和安卓 4.1.2)

xhr.open("POST", URL);
xhr.send({
   files : Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory, sourcefilename)
});
}
于 2013-07-02T12:03:52.370 回答