javascript excellentexport blob issue
问题 I have a web page that generates a report with about 1000 - 5000 records (14 columns). The code: excel: function(anchor, table, name) { table = get(table); var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}; var hrefvalue = uri.excel + base64(format(template.excel, ctx)); anchor.href = hrefvalue; // Return true to allow the link to work return true; }, This works if the records are about 1500 but if its more than 2000, it doesnt. I saw this post how to export table as excel