Ext JS 3:从文件上传字段获取数据

发布于 2024-11-30 09:31:01 字数 118 浏览 2 评论 0原文

我在 Ext JS 3.3.1 中使用 Ext.ux.FileUploadField。我需要从表单中获取文件数据。有谁知道在不提交表格的情况下是否可以这样做?我可以看到文件名,但看不到文件数据...

谢谢。

I am using Ext.ux.FileUploadField in Ext JS 3.3.1. I need to get the file data from the form. Does anyone know if this is possible without submitting the form? I can see the filename but not the file data...

Thanks.

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

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

发布评论

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

评论(1

你对谁都笑 2024-12-07 09:31:01
// get a handle to the FileUploadField component (e.g. by ID)
var fp = Ext.getCmp('fileUploadField');

//add a handler to FileUploadField's fileselected event
fp.on('fileselected', this.onFileUploadFieldFileSelected, this);



// 'fileselected' event handler
onFileUploadFieldFileSelected : function(fp, fileName) {
    // get a handle to the selected file
    var selectedFile = fp.fileInput.dom.files[0];

    // read the contents of the file using FileReader and display content here
}
// get a handle to the FileUploadField component (e.g. by ID)
var fp = Ext.getCmp('fileUploadField');

//add a handler to FileUploadField's fileselected event
fp.on('fileselected', this.onFileUploadFieldFileSelected, this);



// 'fileselected' event handler
onFileUploadFieldFileSelected : function(fp, fileName) {
    // get a handle to the selected file
    var selectedFile = fp.fileInput.dom.files[0];

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