ExtJS 4 - 如何使用Ajax下载文件?

时间:2011-10-12 12:35:42

标签: javascript ajax extjs download extjs4

我有一个包含各种文本字段和两个按钮的表单 - 导出到Excel并导出为CSV。

用户可以将值提供给表单中的不同字段,然后单击其中一个按钮。

预期的行为是应该触发Ajax请求,并将字段值作为参数触发,并且应该下载所选文件(按钮点击的Excel / CSV)(我不提交表单,因为需要完成在提交之前对值进行一些处理)。

我在下载Ajax请求的成功函数中一直使用以下代码:

result  =   Ext.decode(response.responseText);

try {
    Ext.destroy(Ext.get('testIframe'));
}

catch(e) {}

Ext.core.DomHelper.append(document.body, {
    tag: 'iframe',
    id:'testIframe',
    css: 'display:none;visibility:hidden;height:0px;',
    src: result.filename,
    frameBorder: 0,
    width: 0,
    height: 0
});

在文件是在服务器上物理创建的情况下,上面的代码一直正常工作。但是在我当前的项目中,文件不是在服务器上创建的,而是使用正确的标题将内容流式传输到浏览器。

因此,当文件在服务器上不存在时,有没有办法使用Ajax下载文件?只是补充一点,我需要将一长串参数发送到服务器,因此无法将它们全部添加到iframe的src中。

有人可以指导吗?

感谢您提前提供任何帮助。

1 个答案:

答案 0 :(得分:13)

您可以使用以下组件:

Ext.define('CMS.view.FileDownload', {
    extend: 'Ext.Component',
    alias: 'widget.FileDownloader',
    autoEl: {
        tag: 'iframe', 
        cls: 'x-hidden', 
        src: Ext.SSL_SECURE_URL
    },
    stateful: false,
    load: function(config){
        var e = this.getEl();
        e.dom.src = config.url + 
            (config.params ? '?' + Ext.urlEncode(config.params) : '');
        e.dom.onload = function() {
            if(e.dom.contentDocument.body.childNodes[0].wholeText == '404') {
                Ext.Msg.show({
                    title: 'Attachment missing',
                    msg: 'The document you are after can not be found on the server.',
                    buttons: Ext.Msg.OK,
                    icon: Ext.MessageBox.ERROR   
                })
            }
        }
    }
});

将它放在视口中的某个位置,例如:

{
    region: 'south',
    html: 'South',
    items: [
        {
            xtype: 'FileDownloader',
            id: 'FileDownloader'
        }
    ]
}

不要忘记在视口类中要求它:

requires: [
    'CMS.view.FileDownload'
]

动作处理程序可能如下所示:

var downloader = Ext.getCmp('FileDownloader')
downloader.load({
    url: '/attachments/' + record.get('id') + '/' + record.get('file')
});

将Content-Disposition标头作为响应非常重要,否则不会下载任何内容。

问候转到http://www.quispiam.com/blog/post.php?s=2011-06-09-download-a-file-via-an-event-for-extjs4 这件事对我有用。