Spring MVC发送的POST数据在IE8上为空
我在 Spring MVC 中有两个文本字段(pageField1)和 pageField2),用户可以在其中输入页码。 JavaScript 代码检索这些文本字段中的值并将其作为 POST 数据发送到控制器。在 javascript 中检索值并作为 POST 数据发送的代码对于这两个字段完全相同。
在控制器中,我使用 request.getParameter("value") 来检索 POST 数据。 在 Firefox 和 Chrome 上,pageField1 和 pageField2 的值都可以正常检索。 在 IE8 上,request.getParameter("value") 对 pageField1 返回 null,但对 pageField2 返回正确的值。
这真是令人费解,我也难住了。我在 Spring MVC 将 POST 数据发送到控制器之前发出了警报。 FireFox 和 IE 的值完全相同,但在控制器上检索时,IE 上的值为 null。
任何输入都会很棒!如果需要,我可以发布代码片段。
谢谢!
I have two text fields (pageField1) and pageField2) in Spring MVC where an user can input in page numbers. The javascript code retrieves the values in these textfields and sends as POST data to the controller. The code for retreiving the values and sending as POST data in javascript is exactly the same for both fields.
In the Controller, I use request.getParameter("value") to retrieve the POST data.
On Firefox and Chrome, values for both pageField1 and pageField2 are retrieved fine.
On IE8, request.getParameter("value") returns null for pageField1 but the correct value for pageField2.
This is really baffling, and I am stumped. I put an alert just before Spring MVC sends the POST data to the controller. The values are exactly the same for FireFox and IE, but when retrieved on the controller, its null on IE.
Any input would be great! I can post snippet of the code if needed.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)