主页 > 知识库 > AJAX 异步传输数据的问题

AJAX 异步传输数据的问题

热门标签:银行业务 Linux服务器 服务器配置 电子围栏 阿里云 团购网站 科大讯飞语音识别系统 Mysql连接数设置
要异步传输的数据:
Xml代码
....
action xsi:type="basic:JavaScript" script="index += 1;"/>
....
Ajax异步传输代码:
Js代码
复制代码 代码如下:

var postData = "input="+ escape(inputJSON) +"script="+escape(xml)+
"feedGeneral=" + escape(feedGeneral);
XmlHttpRequest.open("POST",url,true);
XmlHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
XmlHttpRequest.send(postData);

postData在encode和unencode,最终导致在后台Servlet中得到得到数据+被空格代替,使得script中的index += 1;变成了index = 1;从而导致后台Java代码在跑script出现死循环。
在网上搜索,发现content-type使用application/x-www-form-urlencoded后:
[来自http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1]写道
复制代码 代码如下:

Control names and values are escaped. Space characters are replaced by `+', and then reserved characters are escaped as
described in [RFC1738], section 2.2: Non-alphanumeric characters are replaced by `%HH', a percent sign and two hexadecimal
digits representing the ASCII code of the character. Line breaks are represented as "CR LF" pairs (i.e., `%0D%0A').

然而使用form来提交方式来发起request却不会出现类似的问题,而form默认的Content-Type也是application/x-www-form-urlencoded:
Js代码
复制代码 代码如下:

$('test').innerHTML = "form target='_blank' id='test_form' action='./gen_feed' method='post'>"
+ "input type='text' name='input' />input type='text' name='script' />"
+ "input type='text' name='feedGeneral' />input type='hidden' name='format' value='" + this.feed_type + "'
/>"
+ "input type='submit' value='gen' />/form>";
var test_form = $('test_form');
test_form.elements[0].value = inputJSON;
test_form.elements[1].value = script;
test_form.elements[2].value = feedGeneral;
test_form.submit();

仍未发现问题到底出在何处,暂做备忘。暂时把script中的‘+'都用‘-'代替,index += 1;改成index -= -1;呵呵,以后有人看到这段自动生成的诡异脚本,不知道会作何感想,但现在也只能如此。
您可能感兴趣的文章:
  • ajax.js里面有内容显示效果,根据ID
  • asp.net下 jquery jason 高效传输数据
  • 基于Jquery的跨域传输数据(JSONP)
  • JavaScript使表单中的内容显示在屏幕上的方法
  • JS实现左右拖动改变内容显示区域大小的方法
  • java编程实现基于UDP协议传输数据的方法
  • Python爬虫抓取手机APP的传输数据
  • js实现内容显示并使用json传输数据

标签:大理 蚌埠 萍乡 衡水 枣庄 广元 江苏 衢州

巨人网络通讯声明:本文标题《AJAX 异步传输数据的问题》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266