2014-09-08 8 views
10

Sto tentando di esportare una tabella HTML in Excel utilizzando javascript. Questo è il codice javascriptCodifica UTF-8 durante l'esportazione della tabella HTML in Excel

<script type="text/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]--></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} 
      window.location.href = uri + base64(format(template, ctx)) 
      } 
     })() 
</script> 

Questo è il mio colpo di testa

<meta http-equiv="content-type" content="application/vnd.ms-excel;" charset="UTF-8"> 
<meta charset="UTF-8"> 

Questo è il mio tavolo

<table id="tblExport"> 
    <tr> 
     <td>José</td> 
     <td>María</td> 
    </tr> 
</table> 

E questo è il pulsante che fa scattare l'esportazione

<input type="button" onclick="tableToExcel('tblExport', 'W3C Example Table')" value="Export to Excel"> 

Non riesco a esportare l'UTF -8 caratteri correttamente, come é o í. Provo questo Importing HTML table into OO Calc as UTF8 without converting to entities ma non funziona. Ho MS-Excel 2010 e Win7 64 bit.

Come posso esportare correttamente i caratteri UTF-8?

Grazie!

risposta

27

Primo: l'intestazione non è corretta. Dovrebbe essere:

<meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"> 

E secondo: dovrebbe essere nel modello, poiché contiene informazioni sul set di caratteri per Excel.

<script type="text/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"><meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"><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]--></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} 
      window.location.href = uri + base64(format(template, ctx)) 
      } 
     })() 
</script> 
+0

Grazie per la risposta, ma ho trovato altra soluzione più semplice ... – Josecanalla

+8

Puoi condividere la soluzione semplice che hai trovato? Tks! –

+1

Grazie per aver condiviso la soluzione semplice: D – Sal

1
function exportData(report_id){ 
    var blob = new Blob([document.getElementById(report_id).innerHTML], { 
     type: "text/plain;charset=utf-8;" 
    }); 
    saveAs(blob, "Report.xls"); 

prende i dati della tabella come testo normale e salvare come Excel senza codifica problema

0

Utilizza il codice qui sotto nella var uri:

var uri = 'data:application/vnd.ms-excel;charset=UTF-8;base64,' 

Output

0

lo farò cita di nuovo un rispetto che è stato indicato sopra. È necessario includere il codice meta tag all'interno del tag head:

<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<meta charset="utf-8" /> 
<!--This is what you should include--> 
<meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"> 
<!----> 
<title>Ver Listado Pago</title> 
<link href="/Images/Decretos.ico" rel="shortcut icon" type="image/x-icon" /> 
<meta name="viewport" content="width=device-width" /> 
<link href="/Content/site.css" rel="stylesheet" /> 
<link href="~/Content/booostrap/bootstrap.min.css" rel="stylesheet" /> 
<link href="~/Content/booostrap/bootstrap-theme.css" rel="stylesheet" /> 
<link href="~/Content/booostrap/bootstrap-theme.min.css" rel="stylesheet" /> 

Questo ha funzionato per me. Ma IE e WIN10 hanno alcuni conflitti per il download a causa dell'estensione xls. Tuttavia, il problema dei caratteri speciali viene corretto