ajax不适用于jsf中的multipart / form-data

时间:2014-08-06 13:14:11

标签: ajax jsf jsf-2 primefaces

我有以下代码

<h:form enctype="multipart/form-data">
<p:panel id="panelEmployee">
<h:commandButton value="Go" action="#{employee.getFirstEmployee()}">
<f:ajax render="panelEmployee" execute="@form"/>   
</h:commandButton>
<p:fileUpload value="#{employee.file}" mode="simple" allowTypes="/(\.|\/)(gif|jpe?g|png)$/"/> 
</p:panel>
</h:form>

当我点击go按钮并且如果表单enctype是multipart / form-data然后第一个ajax调用是ok,第二个给出了这个javascript错误

SCRIPT5007: Unable to get value of the property 'contentWindow': object is null or undefined

任何人都可以建议吗? 感谢。

0 个答案:

没有答案