【发布时间】:2012-04-25 21:00:59
【问题描述】:
在窗体中我有一个下载按钮
{
xtype: 'button',
text: 'Download CSV',
style: 'margin:18px 0 0 10px',
handler: function () {
console.log('download data');
}
}
单击此按钮时,我想下载:export.csv。我试着用
window.open('export.csv','download')
这适用于 chrome、ff 和 ie9。但在 ie8 中,除非您更改浏览器中的设置,否则它不起作用。有没有更好的方法来使用按钮下载文件?
【问题讨论】:
标签: button extjs download handler