捕获附加到 DWR3 查询字符串的参数?
我有一个名为 myMethod
的方法,它映射到以下 DWR 方法:
List<MyObject> myMethod(String param){
...
return myObjects
}
库通过引用 MyService.myMethod('value')
自动调用此方法,但它还会附加它自己的参数,a
和b
也就是说,最终的请求如下所示:
POST http://localhost:8080/application/dwr /jsonp/MyService/myMethod/value?a=5&b=6
有没有办法通过DWR轻松捕获a
和b
的值?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以获取 HttpServletRequest。
You can get at the HttpServletRequest.