我有一些数据我需要使用
将图像上传到服务器multipart/form-data
但是我的请求超时这是我的数据
var data={
property_name:p_n_txt.value,
friendly_name:f_txt.value,
property_type:clicked,
size:space_Slider.getValue(),
price:price_Slider.getValue(),
number_of_bedrooms:bedrooms_Slider.getValue(),
number_of_bathrooms:bathrooms_Slider.getValue(),
number_of_parkings:p_space_Slider.getValue(),
location:a_txt.value,
features:13,
payment_method:4,
image1_name:"image0.png",
image1:Ti.Filesystem.getFile(Ti.Filesystem.tempDirectory,Ti.App.Properties.getString("filename")),
};
,httpclient是
var xhr = Ti.Network.createHTTPClient({
onload: function() {
var myData = JSON.parse(this.responseText);
console.log(this.responseText);
},
// function called when an error occurs, including a timeout
onerror : function(e) {
Ti.API.debug(e.error);
console.log(this.status);
console.log(e.error);
},
timeout : 20000
});
xhr.open('POST','http://url/');
xhr.setRequestHeader("enctype", "multipart/form-data");
xhr.setRequestHeader("Content-Type", "image/png");
// xhr.setRequestHeader("Content-Type", "image/jpeg");
xhr.send(data);
});
这里应该形成数据而不是json,因此不需要添加json.stringify
但我有4个案例我试过他们
首先:使用stringify我得到了HTTP 415,如果我添加了contentType“image / png”
和HTTP 500如果我没有添加
第二个没有stringify当我添加添加内容类型“image / png”我有请求超时
当我没有添加它时,我得到HTTP 413
关于如何完成这个原因的任何想法我发现了很多关于它的问题,但没有人对我有帮助
谢谢
答案 0 :(得分:0)
为什么不尝试将您的图像编码为base64encoded并将其传递到服务器端并对其进行解码,您就可以继续进行。
Ti.Utils.base64encode(image.toBlob()).toString();
这可以发送到服务器,并且不需要发送标头。