我正在尝试在 a中执行actionthrough ,但是当将放在数据表中时不会调用 ,如下所示commandButtondataTableactioncommandButton
<h:form>
<h:dataTable value="#{bean.list}" var="item">
<h:column>
<h:commandButton value="submit" action="#{bean.submit}" />
</h:column>
</h:dataTable>
</h:form>
当我移出commandButton时dataTable,action成功执行。commandButton在数据表内部时有什么问题?有同样的commandLink问题。