如何使用 JSONRequest.POST 从 url 获取参数?
如何使用 JSONRequest 获取 URL 处的 POST 参数。原始站点将是 www.abc.com/aServlet。例如,www.abc.com/aServlet?user=tom 我想获取“user”的参数,即“tom”。我实际上是在 aServlet(一个 servlet)中手动键入用户。
问题是我不知道如何使用 JSONRequest 来检索参数。请帮忙。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为他想要做的是从 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.