使用 CallResponder 时 ActionScript 向请求传递额外参数

发布于 2024-12-13 09:18:50 字数 732 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

如此安好 2024-12-20 09:18:50

这是不可能的——如果你想传递更多参数,你需要改变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.

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