ZK :带参数的转发动作

发布于 2024-10-30 21:39:22 字数 336 浏览 5 评论 0原文

我试图在页面上动态显示和隐藏行。首先,我尝试在 .zul 页面上创建它,但无法使用 annotadeDatabinder 刷新组件。现在我试图在控制器java文件上实现它,但现在我面临着一个问题,如果我使用组件(如列表框)forward ="onSelect=onSelected(paramA)" 然后在控制器上我tringto 像 public void onSelected(ForwardEvent event , String pram){ } 一样捕获它,

这不起作用。如果我在没有第二个参数的情况下使用它,它就可以工作。但我应该发送一些字符串来检查它。有什么办法吗?

I am trying to show and hide rows dynamically on my page.firstly I tryed to make it on .zul page but I could not refresh component with annotadeDatabinder. Now I am trying to make it on controller java file but now I am facing with problem that if I use for component(like listbox) forward ="onSelect=onSelected(paramA)" then on controller I am tringto catch it like

public void onSelected(ForwardEvent event , String pram){ } this does not work.If I use without second parameter it works. But I should send some string to check it. İs there any way?

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

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

发布评论

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

评论(1

孤者何惧 2024-11-06 21:39:22

事件侦听器的签名错误。无论指定或不指定参数,其值都是相同的。此外,您传递的参数可以从 event.getData() 中检索。

public void onSelected(ForwardEvent event) {
  String param = (String)event.getData();
...

The signature of the event listener is wrong. It shall be the same no matter the parameter is specified or not. Furthermore, the parameter you passed could be retrieved from event.getData().

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