gpt4 book ai didi

java - 如何同时显示模式和执行操作

转载 作者:行者123 更新时间:2023-11-30 17:49:12 25 4
gpt4 key购买 nike

我的 JSF 页面中有这段代码:

<a href="#adios" data-toggle="modal">
<h:commandButton value="Pay!" action="#{basketManager.pay(accountManager.currentAccount.username)}"
class="btn btn-primary btn-lg"></h:commandButton>
</a>

模态显示,但 action 未执行...如何同时执行这两个操作(显示模态和调用方法)?

最佳答案

 <h:form>
<p:remoteCommand name="callAction" onstart="Place your javascript code to show the model"
action="#{basketManager.pay(accountManager.currentAccount.username)}"
update="@form" />
<h:commandButton value="Pay!" class="btn btn-primary btn-lg"
onclick="callAction();" />
</h:form>

在这里您可以在 javascript 函数上调用 ManagedBean 方法。当远程命令开始执行时,它会显示模型甚至调用操作方法

希望对你有帮助

关于java - 如何同时显示模式和执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19439121/

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