Primefaces 文件上传 js API
我在我的应用程序中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要选择一个文件:
To choose a file:
在 Primefaces 展示案例中有 FileUpload 示例,它看起来像你的样子要求:
它是在flash中实现的。我不知道是否有 html5 替代品。
您也可以尝试使用 autoupload 属性(
auto="true"
)而不是使用链接。如果你成功了,请告诉我。
In the Primefaces show case there is FileUpload example, which is looks like what you are asking for:
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.