ajax POST到servlet:null参数

时间:2011-06-27 13:57:37

标签: ajax flex servlets post

1 个答案:

答案 0 :(得分:-1)

没关系,我发现了问题。 这是来自adobe page的JavaScript代码。

我添加了

xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", params.length);
xmlHttp.setRequestHeader("Connection", "close");

之前的

xmlHttp.send(params);

现在,我从servlet得到了一个很好的答案......

recieved POST
parameters: 1
key: username - [Ljava.lang.String;@1cebc9f

非常酷,没有使用flex的javascript那个bug,但只有一些缺少requestReader。