Primefaces 文件上传 js API

发布于 2024-12-12 04:47:30 字数 219 浏览 0 评论 0原文

我在我的应用程序中使用 primefaces 库。我需要通过点击图像来更改用户图片。我可以隐藏 primefaces 文件上传器组件并使用 JavaScript 来使用它吗? IE 我可以像下面的代码一样从 javascript 使用它吗?

fileUploader.openFile();
fileUploader.sendFile();

有什么建议吗?

I'm using primefaces library in my application. I need change users picture on click by image. Can I hide primefaces file uploader component and work with it with javascript? I.E. can I use it from javascript like in following code?

fileUploader.openFile();
fileUploader.sendFile();

Any suggestions?

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

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

发布评论

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

评论(2

鱼忆七猫命九 2024-12-19 04:47:30

要选择一个文件:

fileUploader.cfg.fileInput.click()

To choose a file:

fileUploader.cfg.fileInput.click()
肩上的翅膀 2024-12-19 04:47:30

在 Primefaces 展示案例中有 FileUpload 示例,它看起来像你的样子要求:

<p:fileUpload widgetVar="uploader" height="48" width="48"  
    fileUploadListener="#{fileUploadController.handleFileUpload}"  
    image="/images/browse.png" cancelImage="/images/cancel.png"  
    allowTypes="*.jpg;*.png;*.gif;" description="Images" customUI="true"/>  

<h:outputLink value="#" title="Upload" onclick="uploader.upload();"   
    style="font-weight:bold;color:#616D7E">  
    Upload Files  
</h:outputLink>

它是在flash中实现的。我不知道是否有 html5 替代品。
您也可以尝试使用 autoupload 属性(auto="true")而不是使用链接。
如果你成功了,请告诉我。

In the Primefaces show case there is FileUpload example, which is looks like what you are asking for:

<p:fileUpload widgetVar="uploader" height="48" width="48"  
    fileUploadListener="#{fileUploadController.handleFileUpload}"  
    image="/images/browse.png" cancelImage="/images/cancel.png"  
    allowTypes="*.jpg;*.png;*.gif;" description="Images" customUI="true"/>  

<h:outputLink value="#" title="Upload" onclick="uploader.upload();"   
    style="font-weight:bold;color:#616D7E">  
    Upload Files  
</h:outputLink>

It's implemented in flash. I don't know, if there are html5 alternatives.
You may also try autoupload attribute(auto="true") instead of using link.
Please, let me know, if you get it working.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文