簡體   English   中英

如何使用 JavaScript 創建 a.docx 文件而不是 a.doc 單詞

[英]How to create a .docx file and not a .doc word using JavaScript

我在用:

var header = "<html xmlns:o='urn:schemas-microsoft-com:office:office' "+
    "xmlns:w='urn:schemas-microsoft-com:office:word' "+
    "xmlns='http://www.w3.org/TR/REC-html40'>"+
    "<head><meta charset='utf-8'><title>Export HTML to Word Document with JavaScript</title></head><body>";
    var footer = "</body></html>";
    //@ts-ignore
    if(ev.target.id === "screenword"){
      this.setState({
        typeOfPrint: "screenword",
      }, () => {
        var sourceHTML1 = header+document.getElementById("spage").innerHTML+footer;
        var source1 = 'data:application/vnd.ms-word;charset=utf-8,' + encodeURIComponent(sourceHTML1);
        var fileDownload1 = document.createElement("a");
        document.body.appendChild(fileDownload1);
        fileDownload1.href = source1;
        fileDownload1.download = this.state.PPName+'.doc';
        fileDownload1.click();
        document.body.removeChild(fileDownload1);

創建 doc 文件但想創建 docx。 我已經搜索並找不到有關如何更新此代碼的任何指導。 我試圖盡可能避免使用外部庫。

我會考慮為此使用外部庫,例如https://www.npmjs.com/package/docx 上面的頁面包括從網頁中使用它的示例。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM