web-dev-qa-db-ja.com

HTMLテーブルをExcelにエクスポートするときにUTF-8をエンコードする

JavaScriptを使用してHTMLテーブルをExcelにエクスポートしようとしています。これはjavascriptコードです

<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> 

これは私のヘッダーです

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

これは私のテーブルです

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

そして、これはエクスポートをトリガーするボタンです

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

ÉやíなどのUTF-8文字を正しくエクスポートできません。これを試してみます HTMLテーブルをOOエンティティに変換せずにUTF8としてCalcにインポート が動作しません。MS-Excel2010およびWin7 64ビットがあります。

UTF-8文字を正しくエクスポートするにはどうすればよいですか?

ありがとう!

14
Josecanalla

最初:ヘッダーの形式が正しくありません。そのはず:

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

2番目: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> 
37
Axel Richter
function exportData(report_id){
    var blob = new Blob([document.getElementById(report_id).innerHTML], {
        type: "text/plain;charset=utf-8;"
    });
    saveAs(blob, "Report.xls");
}

表データをプレーンテキストとして受け取り、エンコードの問題なしでExcelとして保存します

1
C.T

上記の点について再度言及します。 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" />

これは私のために働いた。ただし、IEとWIN10は、xls拡張のためにダウンロードに競合があります。ただし、特殊文字の問題は修正されています

0
Bastian Salazar

デフォルトのファイル名を変更したい場合 @ Axel Richterの回答による 、これを試してください:

var link = document.createElement('a');
link.download = 'filename.xls';
...
link.href = uri + base64(format(template, ctx));
link.click();
...

window.location.hreflink.hrefに置き換えます

0
Nadir Hasimov

Var uriで次のコードを使用します。

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

出力

0
Maurivan