使用 CallResponder 时 ActionScript 向请求传递额外参数
我正在使用 BlazeDS 运行 Flex。我的后端是 Java 的。
我在actionscript中有以下函数:
override public function execute():void
{
super.execute();
var responder:CallResponder = new CallResponder();
responder.token = service.foo(param);
responder.addEventListener(ResultEvent.RESULT, onDataReceive);
responder.addEventListener(FaultEvent.FAULT , onDataReceiveError);
}
在Java中,函数foo看起来像这样:
public void foo (String param) {
//some code
}
是否可以在不更改java函数foo的情况下以某种方式在请求上传递另一个参数?
我想在 foo 中做这样的事情(忽略语法):
public void foo (String param) {
Request.getParameter("param2");
}
我希望这是清楚的。
感谢您的帮助。
I am running flex with BlazeDS. My backend is in Java.
I have the following function in actionscript:
override public function execute():void
{
super.execute();
var responder:CallResponder = new CallResponder();
responder.token = service.foo(param);
responder.addEventListener(ResultEvent.RESULT, onDataReceive);
responder.addEventListener(FaultEvent.FAULT , onDataReceiveError);
}
In Java the function foo looks like this:
public void foo (String param) {
//some code
}
Is it possible to somehow pass another parameter on the request without changing the java function foo?
I want to do something like this in foo (ignore the syntax):
public void foo (String param) {
Request.getParameter("param2");
}
I hope that's clear.
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的——如果你想传递更多参数,你需要改变java方法的签名。或者,您可以使用通用 Map 作为输入参数,并将所有参数推入其中。
It's not possible to do that - you need to change the signature of the java method if you want to pass more parameters. Or, you can use a generic Map as an input parameter and push all the parameters into it.