gpt4 book ai didi

jsf - 执行托管 bean 操作方法后显示 alert()

转载 作者:行者123 更新时间:2023-12-01 12:35:28 25 4
gpt4 key购买 nike

我有一个命令链接:

<h:commandLink value="Delete"
onclick="return confirm('Are you sure?');"
action="#{bean.deleteDestination(destination, '/destination/show')}" />

它调用这个托管 bean 操作方法:

public String deleteDestination(Destination selected, String action) {
List<Flight> flights = getEjbFlightFacade().findFlightWithDestination(selected);

if (flights.isEmpty()) {
getEjbDestinationFacade().remove(selected);
setDestinations(getEjbDestinationFacade().findAll());
}
else {
// Here need to show an alert() that user can't remove the item.
}

return action;
}

如评论所示,我想显示一个 alert(),最终用户无法删除该项目。我怎样才能做到这一点?

最佳答案

让 JSF 根据 bean 属性有条件地呈现所需的脚本。

例如

this.undeleteable = true;
<h:outputScript rendered="#{bean.undeleteable}">
alert("You can't delete it.");
</h:outputScript>

然而,规范的方式是只显示(全局)面孔消息。

FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(null, new FacesMessage("You can't delete it."));
<h:messages globalOnly="true" />

警报是 soo 1990。

关于jsf - 执行托管 bean 操作方法后显示 alert(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30309236/

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