ZK CDATA 并传递变量?

发布于 2024-10-06 13:06:24 字数 631 浏览 6 评论 0原文

我已经为此苦苦挣扎了几天,但似乎无法解决问题。 这是我的代码:

<attribute name="onClick"><![CDATA[
Messagebox.show("Remove this file?", "Remove?", Messagebox.YES | Messagebox.NO, Messagebox.QUESTION,
new EventListener() {
    public void onEvent(Event evt) {
        switch (((Integer)evt.getData()).intValue()) {
            case Messagebox.YES: someFunction(${each.Id}); break;
            case Messagebox.NO: break;
        }
    }
})
]]></attribute>

上面的代码来自 ZK ZUL 页面中的 forEach 循环。它应该生成一个文件列表,并且每个文件上都应该有一个“删除”按钮。当您单击它时,应该会出现一个弹出窗口并要求确认。确认后,它应该将 id 传递给一个函数,该函数从此处理所有事情。

我很确定这是我遗漏或不知道的非常小的事情。

I have been struggling with this for a couple of days now and I can't seem to get it right.
Here is my code:

<attribute name="onClick"><![CDATA[
Messagebox.show("Remove this file?", "Remove?", Messagebox.YES | Messagebox.NO, Messagebox.QUESTION,
new EventListener() {
    public void onEvent(Event evt) {
        switch (((Integer)evt.getData()).intValue()) {
            case Messagebox.YES: someFunction(${each.Id}); break;
            case Messagebox.NO: break;
        }
    }
})
]]></attribute>

The above code is from a forEach cycle in a ZK ZUL page. It should generate a list of files and on every file you should have a "Delete" button. When you click on it a popup should come up and ask for confirmation. After you confirm it should pass the id to a function which from then handles everything.

I'm quite sure it's something really small I'm missing or not knowing.

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

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

发布评论

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

评论(1

百思不得你姐 2024-10-13 13:06:24

这里有两个问题。

  1. 您不能在 zscript 中使用 EL。相反,您必须通过隐式对象访问它。例如,
    <window>
      <button label="${each}" forEach="apple, orange">
        <zscript>
      self.parent.appendChild(new Label("" + each));
        </zscript>
      </button>
    </window>
  1. 然而,每个仅在页面渲染中可用。评估后重置。这意味着,您无法在事件侦听器中访问它。例如,以下内容将不起作用
    <window>
      <button label="${each}" forEach="apple, orange"
        onClick='alert(""+each)'/> 
    </window>

您必须首先存储每个对象,然后在事件侦听器中使用它。

您可以查看ZK 的参考

There are two issues here.

  1. You cannot use EL in zscript. Rather, you have to access it through implicit object. For example,
    <window>
      <button label="${each}" forEach="apple, orange">
        <zscript>
      self.parent.appendChild(new Label("" + each));
        </zscript>
      </button>
    </window>
  1. However, each is available only in the page rendering. It is reset after evaluated. It means, you can't access it in the event listener. For example, the following won't work
    <window>
      <button label="${each}" forEach="apple, orange"
        onClick='alert(""+each)'/> 
    </window>

You have to store the each object first and then use it in the event listener.

You might take a look at ZK's reference

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