1

p:commandLink带有 id 的 scl1并且cl2不触发动作。Tomcat 控制台上没有任何内容,Firebug 控制台上没有任何内容。

在这种情况下我应该在哪里寻找问题,我认为我在两个控制台中都非常绝望,没有任何错误或异常。

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
        xmlns:h="http://java.sun.com/jsf/html"
        xmlns:f="http://java.sun.com/jsf/core"
        xmlns:ui="http://java.sun.com/jsf/facelets"
        xmlns:c="http://java.sun.com/jsp/jstl/core"
        xmlns:o="http://openfaces.org/"
        xmlns:p="http://primefaces.org/ui">
    <h:form>
        <ui:repeat var="sharing" value="#{sharingController.myList}">
            <ui:repeat var="sharingComment" value="#{sharing.subCommentList}">
                <p:commandLink id="cl1" value="" process="@this"  action="#{reportController.reportSharingComment(sharingComment)}" style="float:right;" id="sharingComment_alert" styleClass="icon_alert" title="#{msg['label.report']}" update=":messages" >
                </p:commandLink>
                 <p:commandLink value="" id="cl2" process="@this" action="#{sharingController.deleteComment(sharingComment)}" style="float:right;" id="sharingComment_delete" styleClass="icon_delete" title="#{msg['label.delete']}" update="@form :messages">
                </p:commandLink>
            </ui:repeat>
        </ui:repeat>
    </h:form>
</ui:composition>

我尝试使用嵌套ui:repeat在 post 构造中的具体列表,然后触发了 commandlinks,但我必须遍历字段列表,如myList. 我正在加载两者myList,并且对于每次共享,我都将其加载到subCommentlistfor in post 构造中,但我仍然无法使commandLinks 着火。

4

1 回答 1

1

h:commandLink / h:commandButton 没有被调用

4.点解决:将bean放在视图范围和/或确保将数据模型加载到bean的(后)构造函数中(因此不在getter方法中!)应该修复它。

于 2013-02-09T16:25:57.370 回答