primefaces onadd侦听器fileupload不调用

发布于 2025-01-20 03:43:36 字数 580 浏览 0 评论 0原文

在根据我的要求实现我自己的逻辑之前,我试图在警报框中显示每个文件。但它不起作用。

<h:head>

<script type="text/javascript">
    function displayEachFile(file,callback){
        alert(file);
    }
</script>
</h:head>

<h:body>
    <div class="card">
    <h:form name="download">
            <p:fileUpload value="#{fileBean.files}" mode="advanced" multiple="true" auto="true"
            listener="#{fileBean.handleFileUpload}" widgetVar="hello" onAdd="displayEachFile"/>
        </h:form>
    </div>
</h:body>

</html>

I am trying to display the each file in alert box before i implements my own logic as per my requirements. But its not working.

<h:head>

<script type="text/javascript">
    function displayEachFile(file,callback){
        alert(file);
    }
</script>
</h:head>

<h:body>
    <div class="card">
    <h:form name="download">
            <p:fileUpload value="#{fileBean.files}" mode="advanced" multiple="true" auto="true"
            listener="#{fileBean.handleFileUpload}" widgetVar="hello" onAdd="displayEachFile"/>
        </h:form>
    </div>
</h:body>

</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

本王不退位尔等都是臣 2025-01-27 03:43:36

文档更新: https:/ /组件/fileupload

onadd有3个参数this,file,parackback

运行示例:

pf-8657.zip 文件,如果您决定可以添加您的调用回调

例如:

onAdd="onAddFile(file, callback);"

您可以执行仅添加名为primefaces.pdf的文件之类的事情。

function onAddFile(file, callback) {
   if (file.name === 'primefaces.pdf') {
       callback.call(this, file);
   }
}

Documentation Updated: https://primefaces.github.io/primefaces/11_0_0/#/components/fileupload

onAdd has 3 params this, file, callback.

Running example:
pf-8657.zip

This gives you the opportunity to inspect the file and if you decide its OK to add you call callback.

For example:

onAdd="onAddFile(file, callback);"

You could do something like only add files named primefaces.pdf for example.

function onAddFile(file, callback) {
   if (file.name === 'primefaces.pdf') {
       callback.call(this, file);
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文