我在webservice中有四個參數。該服務工作古德我已經測試使用Android應用程序。但同樣的事情,我不能在phonegap。如何使用XMLHttpRequest對象將輸入流格式的圖像文件發送到服務器
參數:name,emailid,pass和imagefile。圖像格式爲base64png。在服務器端,我正在接收Inputstream。尋求幫助以二進制格式發送。
body+= ServiceHttpHeader('name',name1);
body+= ServiceHttpHeader('emailid',emailid1);
body+= ServiceHttpHeader('pass',pass1);
body +='Content-Disposition: form-data; name=imagedetails;'
body += 'filename='+imagedetails+'\r\n';
body += "Content-Type: application/octet-stream\r\n\r\n ";
body +=imgdetailurl+'\r\n';
body += '--' + boundary + '--';
ImageUploadRequest.setRequestHeader('Cache-Control', 'no-cache');
ImageUploadRequest.send(body);