我使用与此link中显示的完全相同的代码将表格从HTML导出到Excel,并且在许多浏览器中都运行良好。
问题出现在我在全新的MS Edge网络浏览器上进行测试时,它会打开一个新的空白标签,就是这样。没有控制台错误,没有警告弹出,没有。正如我所说,在link中,有一种方法可以处理IE中的Excel导出。
所以我想知道你们中是否有人知道类似的技巧来支持新的Microsoft Edge浏览器。
感谢。
答案 0 :(得分:5)
您目前无法导航到security purposes的Internet Explorer或Microsoft Edge中的数据网址。但是,可以使用msSaveBlob
or msSaveOrOpenBlob
下载或保存blob。
我已在下面为您准备了一个基本示例:
(function () {
// Generate our CSV string from out HTML Table
var csv = tableToCSV( document.querySelector( "#sites" ) );
// Create a CSV Blob
var blob = new Blob( [ csv ], { type: "text/csv"} );
// Determine which approach to take for the download
if ( navigator.msSaveOrOpenBlob ) {
// Works for Internet Explorer and Microsoft Edge
navigator.msSaveOrOpenBlob( blob, "output.csv" );
} else {
// Attempt to use an alternative method
var anchor = document.body.appendChild(
document.createElement( "a" )
);
// If the [download] attribute is supported, try to use it
if ( "download" in anchor ) {
anchor.download = "output.csv";
anchor.href = URL.createObjectURL( blob );
anchor.click();
}
}
function tableToCSV( table ) {
// We'll be co-opting `slice` to create arrays
var slice = Array.prototype.slice;
return slice.call( table.rows ).map(function ( row ) {
return slice.call( row.cells ).map(function ( cell ) {
return '"t"'.replace( "t", cell.textContent );
}).join( "," );
}).join( "\r\n" );
}
}());
在线测试:http://jsfiddle.net/jonathansampson/nc4k4hz8/
您需要执行一些功能检测,以查看msSaveBlob
或msSaveOrOpenBlob
是否可用。如果是,请使用它们,如果不是,则可以沿着另一条路线前进。
我希望这会有所帮助。