我正在使用JSF 2.0代码<h:commandLink>
而我正在尝试打开一个target
为_blank
的窗口。在目标中,我试图填充从服务器获取的文档。但在这样做时,我在jsfcljs
处的jsf.js(函数名称为f.submit()
)中收到错误。
声明如下:
<h:commandLink id="viewDocument" value="#{template.orderBean.documentBean.documentName}"
action="#{template.viewCustomDocument}" target="_blank" styleClass="textbold">
<f:param name="documentId" value="#{template.orderBean.documentBean.documentId}"/>
</h:commandLink>
我得到的错误是
Object不支持此属性。
如果我使用<h:commandButton>
代替,那么我就可以调用服务器并获取文档。
问题可能是什么?