有没有办法在 JSP 中仅对 POST 变量进行 request.getParameter ?

发布于 2024-10-30 08:24:40 字数 97 浏览 1 评论 0原文

在 PHP 中,有 $_REQUEST、$_GET 和 $_POST。如果我只想在 JSP 中获取 POST 变量以防止有人将变量放入 url 中怎么办?有办法做到这一点吗?谢谢!

In PHP there is $_REQUEST, $_GET, and $_POST. What if I want to only get POST variables in JSP to prevent someone from putting the variables in the url? Is there away to do this? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

漫漫岁月 2024-11-06 08:24:40

查询字符串可从 HttpServletRequest 对象中获取 - 因此您知道 URL 上的内容。因此,您可以过滤掉 getParameterMap() 中查询字符串中的任何内容,只留下已发布的内容。

The query string is available from the HttpServletRequest object - so you know what was on the URL. You can therefore filter out anything in the getParameterMap() that was in the query string, leaving only stuff that was posted.

離人涙 2024-11-06 08:24:40

您的 HttpServletRequest 对象有一个 getMethod() 属性,它会告诉您它是 GET 还是 POST。您可以拒绝所有 GET。

我不认为

实际上是有效的,也就是说,我不认为你可以同时拥有 POST 和 GET 参数。不过,我可能是错的。

Your HttpServletRequest object has a getMethod() property which will tell you if it was a GET or a POST. You could just reject all GETs.

I don't think that <form action="mypage?foo=bar"> actually works, that is, I don't think you can have both POST and GET parameters at the same time. I could be wrong, though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文