gpt4 book ai didi

javascript - 如何使用 JavaScript 创建 .docx 文件而不是 .doc 词

转载 作者:行者123 更新时间:2023-12-04 08:01:40 33 4
gpt4 key购买 nike

我在用:

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为了这。
上面的页面包括从网页中使用它的示例。

关于javascript - 如何使用 JavaScript 创建 .docx 文件而不是 .doc 词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66436917/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com