h:commandLink导致JS Uncaught TypeError:无法将属性'adp'设置为null

时间:2016-06-15 06:11:38

标签: jsf

我得到以下错误

  

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>

2 个答案:

答案 0 :(得分:3)

我猜你在HTML或JSF页面中不允许将此h:form放在h:form.Nesting h:form内。再次交叉检查。

我曾经遇到过这个问题。这就是我超越异常的原因。

答案 1 :(得分:0)

尝试使用h:commandButton代替,对我有用。