gpt4 book ai didi

java - OnActionFromStart( Tapestry )

转载 作者:行者123 更新时间:2023-12-01 16:36:22 27 4
gpt4 key购买 nike

我正在使用以下 java 和 tml 代码

java

    private void onActionFromStart(int id)
{
// here im getting url for the particular overlay when onclick
}

tml

    <t:loop t:source="videos" t:value="pojo">

<t:actionlink t:id="start" t:context="${pojo.id}" rel="#overlay1">
// here image tag
</t:actionlink>
</t:loop>

我的问题是当我点击图像时它被覆盖但 onActionFromStart 没有被触发如何解决这个问题

最佳答案

操作处理程序需要具有默认或公共(public)修饰符,Tapestry 才能找到它们:

void onActionFromStart(int id) {
...
}

另请查看 Component Events文档部分。

关于java - OnActionFromStart( Tapestry ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8603909/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com