如何获取servlet中通过dojo.xhrPost发送的数据
> var xhrArgs = {
> url: '/mum/proxy/http/localhost:8080/DemoProject/MyServlet',
> postData:' MyDataToBeSend',
> handleAs: 'text',
> load: function(data) { },
> error: function(error) {alert(error);}}; var ret =
> dojo.xhrGet(xhrArgs);
大家好,
我已经用 Javascript 编写了上述代码,用于将数据发送到 servlet。但我不明白如何在 servlet 中获取 postData。
> var xhrArgs = {
> url: '/mum/proxy/http/localhost:8080/DemoProject/MyServlet',
> postData:' MyDataToBeSend',
> handleAs: 'text',
> load: function(data) { },
> error: function(error) {alert(error);}}; var ret =
> dojo.xhrGet(xhrArgs);
Hi All,
I have written the above code in Javascript to send data to a servlet. But I am not understanding how to get the postData in the servlet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用 request.getInputStream 让它工作。
:)
Got it working by useing request.getInputStream.
:)