我正在使用jQuery plugin将HTML表格导出到Excel。使用chrome的下载文件名始终为download.xls
,使用mozilla firefox为random-string.xls
。我希望根据日期创建文件名。例如23-06-2014.xls
。
以下是视图文件中的自定义JS块
$(document).ready(function () {
$("#btnExport").click(function () {
$("#account_table").btechco_excelexport({
containerid: "account_table",
datatype: $datatype.Table
});
});
});
答案 0 :(得分:8)
您想在链接上设置download
和href
属性。例如
$("#btnExport").click(function () {
var uri = $("#account_table").btechco_excelexport({
containerid: "account_table",
datatype: $datatype.Table,
returnUri: true
});
$(this).attr('download', 'ExportToExcel.xls') // set file name (you want to put formatted date here)
.attr('href', uri) // data to download
.attr('target', '_blank') // open in new window (optional)
;
});
答案 1 :(得分:6)
如果你不想使用这个插件,那么人们已经有了一个替代的javascript。我只是将其修改为具有文件名而不是默认名称。
var tableToExcel = (function () {
var uri = 'data:application/vnd.ms-excel;base64,',
template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>',
base64 = function (s) {
return window.btoa(unescape(encodeURIComponent(s)))
},
format = function (s, c) {
return s.replace(/{(\w+)}/g, function (m, p) {
return c[p];
})
}
return function (table, name) {
if (!table.nodeType) table = document.getElementById(table)
var ctx = {
worksheet: name || 'Worksheet',
table: table.innerHTML
}
var blob = new Blob([format(template, ctx)]);
var blobURL = window.URL.createObjectURL(blob);
return blobURL;
}
})()
设置名称的jquery将是:
$("#btnExport").click(function () {
var todaysDate = moment().format('DD-MM-YYYY');
var blobURL = tableToExcel('account_table', 'test_table');
$(this).attr('download',todaysDate+'.xls')
$(this).attr('href',blobURL);
});
示例: Fiddle