我得到以下错误
jsf.js.xhtml?ln = javax.faces:1未捕获的TypeError:无法设置属性 'adp'为null
当我添加h:form
以使用h:commandLink
<h:form>
<h:commandLink value="View AMC" action="#{treeTableManagedBean.redirectPage()}" />
</h:form>
答案 0 :(得分:3)
我猜你在HTML或JSF页面中不允许将此h:form
放在h:form.Nesting
h:form
内。再次交叉检查。
我曾经遇到过这个问题。这就是我超越异常的原因。
答案 1 :(得分:0)
尝试使用h:commandButton代替,对我有用。