捕获附加到 DWR3 查询字符串的参数?

发布于 2024-11-04 14:45:41 字数 556 浏览 1 评论 0原文

我有一个名为 myMethod 的方法,它映射到以下 DWR 方法:

List<MyObject> myMethod(String param){
...
return myObjects
}

库通过引用 MyService.myMethod('value') 自动调用此方法,但它还会附加它自己的参数,ab

也就是说,最终的请求如下所示:

POST http://localhost:8080/application/dwr /jsonp/MyService/myMethod/value?a=5&b=6

有没有办法通过DWR轻松捕获ab的值?

I have a method called myMethod which maps to the following DWR method:

List<MyObject> myMethod(String param){
...
return myObjects
}

A library calls this method automatically by referring to MyService.myMethod('value'), but it also appends its own params, a, and b

That is, the final request looks like this:

POST
http://localhost:8080/application/dwr/jsonp/MyService/myMethod/value?a=5&b=6

Is there any way to capture the values of a and b easily through DWR?

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

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

发布评论

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

评论(1

紫罗兰の梦幻 2024-11-11 14:45:41

您可以获取 HttpServletRequest。

WebContext ctx = WebContextFactory.get();
ctx.getHttpServletRequest().getParam(...)

You can get at the HttpServletRequest.

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