如何使用 JSONRequest.POST 从 url 获取参数?

发布于 2024-09-26 18:40:23 字数 202 浏览 2 评论 0 原文

如何使用 JSONRequest 获取 URL 处的 POST 参数。原始站点将是 www.abc.com/aServlet。例如,www.abc.com/aServlet?user=tom 我想获取“user”的参数,即“tom”。我实际上是在 aServlet(一个 servlet)中手动键入用户。

问题是我不知道如何使用 JSONRequest 来检索参数。请帮忙。

how to get POST parameters at a URL, using JSONRequest. The original site will be www.abc.com/aServlet. For example, www.abc.com/aServlet?user=tom I want to get the paramter of"user" which is "tom". I am actually keying in the user manually in aServlet which is a servlet.

The problem is I dont know how to use JSONRequest to retrieve the parameters. Please help.

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

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

发布评论

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

评论(1

万人眼中万个我 2024-10-03 18:40:23

我认为他想要做的是从 URL 中获取参数“user”。我想 request.getParameter 不能使用,因为它是 POST 方法。所以,我认为他正在尝试获取通过 POST 传递给 servlet(aServlet)的“user”参数。

i think that what he is trying to do is to get the parameter "user" from the URL. I suppose request.getParameter cannot be used since it is a POST method. So, I think he is trying to get the "user" parameter that is passed to the servlet (aServlet) via POST.

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