高级模式的文件上传不起作用

时间:2014-08-13 09:43:15

标签: jsf file-upload primefaces appfuse

我正在尝试在Appfuse项目中添加FileUpload的高级模式,我按照以下链接:http://www.primefaces.org/showcase/ui/file/upload/multiple.xhtml

我添加它但是在选择我的文件时,没有文件显示在growl标签中,并且上传和取消按钮钢禁用。

在导航器的终端中我有这个错误:TypeError:undefined不是函数。

你可以帮助我 感谢

1 个答案:

答案 0 :(得分:0)

展示有一个错误 你需要使用值multipart / form-data声明enctype 实施例

<h:form enctype="multipart/form-data">
    <p:growl id="messages" showDetail="true" />
 <p:fileUpload fileUploadListener="#{fileUploadView.handleFileUpload}" mode="advanced" dragDropSupport="false"
                  multiple="true" update="messages" sizeLimit="100000" fileLimit="3" allowTypes="/(\.|\/)(gif|jpe?g|png)$/" />

    <p:growl id="messages" showDetail="true" />
</h:form>