Hi,
I want to pass data to server in post request using http request. We have javascript code to send but that is for the browser not for app and also it is using following code to send data.
var formData = new FormData(); formData.append('upload', FILE_DATA, FILE_NAME); xhr.send(formData);
When I used the same code in Titanium, it throws error that "FormData" not found. Can anybody tell if there is any alternative way to FormData object in titanium?