开发者

Sending big data to server, Cross-Domain

开发者 https://www.devze.com 2022-12-17 10:23 出处:网络
I\'m trying to se开发者_JAVA百科nd chunks of data from many different servers my app is on, to mine.

I'm trying to se开发者_JAVA百科nd chunks of data from many different servers my app is on, to mine.

Using some dummy image source, passing my data as a GET query. (img.gif?aaa=xxx&bb=yyy...)

the Query is many times too long and gets cut.

is there some better way for me to send the data cross-browser?


It would be the best if you used POST method when sending the data.

 var msgSender = new ActiveXObject("Microsoft.XMLHTTP"); 
 msgSender.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
 msgSender.setRequestHeader("Encoding", "Windows-1257")     
 msgSender.open("POST", "http://yourderver/page" ,true);
 msgSender.onreadystatechange = function(){...};
 var msg = "your very long message goes here";

 //preparing post data
 var strToSend = "someotherarg=somevalue" + username;
     strToSend+= "&msg=" + msg;
 strToSend = escape(strToSend);
 msgSender.send(strToSend);

The solution is even easier, if you use jQuery - just call $.post() method: http://docs.jquery.com/Ajax/jQuery.post

EDIT: However, this will not work cross-domain, unless you specify 'Access-Control' headers on your server and the clients have modern enouhg browsers (FireFox 3.5+ etc)

So, another solution is to include a hidden IFRAME in your page (the page lives on your server then) which contains a form and you call Submit() of that form to POST the data.


Split your payload (e.g. at 1024 bytes), then send using several GET requests.

0

精彩评论

暂无评论...
验证码 换一张
取 消